| /OK3568_Linux_fs/buildroot/package/argp-standalone/ |
| H A D | 0002-isprint.patch | 1 Subject: restrict value range passed to isprint function 3 According to C standards isprint argument shall be representable as an 8 Restrict isprint argument range to values representable by unsigned char. 28 - return __key > 0 && isprint (__key); 29 + return __key > 0 && __key <= UCHAR_MAX && isprint (__key); 41 - return __key > 0 && isprint (__key); 42 + return __key > 0 && __key <= UCHAR_MAX && isprint (__key);
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-support/argp-standalone/files/ |
| H A D | 0002-isprint.patch | 1 Subject: restrict value range passed to isprint function 3 According to C standards isprint argument shall be representable as an 8 Restrict isprint argument range to values representable by unsigned char. 34 - return __key > 0 && isprint (__key); 35 + return __key > 0 && __key <= UCHAR_MAX && isprint (__key); 47 - return __key > 0 && isprint (__key); 48 + return __key > 0 && __key <= UCHAR_MAX && isprint (__key);
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | cctype | 27 int isprint(int c); 75 #ifdef isprint 76 #undef isprint 111 using ::isprint;
|
| H A D | ctype.h | 50 #undef isprint
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | cctype | 27 int isprint(int c); 75 #ifdef isprint 76 #undef isprint 111 using ::isprint;
|
| H A D | ctype.h | 50 #undef isprint
|
| /OK3568_Linux_fs/app/forlinx/quectelCM/libmnl/ |
| H A D | nlmsg.c | 308 isprint(b[i]) ? b[i] : ' ', in mnl_nlmsg_fprintf_payload() 309 isprint(b[i+1]) ? b[i+1] : ' ', in mnl_nlmsg_fprintf_payload() 310 isprint(b[i+2]) ? b[i+2] : ' ', in mnl_nlmsg_fprintf_payload() 311 isprint(b[i+3]) ? b[i+3] : ' '); in mnl_nlmsg_fprintf_payload()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/char_encoding/ |
| H A D | standard.hpp | 84 isprint(int ch) in isprint() function 86 return std::isprint(ch) ? true : false; in isprint()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | safe-ctype.h | 135 #undef isprint 136 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | safe-ctype.h | 135 #undef isprint 136 #define isprint(c) do_not_use_isprint_with_safe_ctype macro
|
| /OK3568_Linux_fs/kernel/drivers/acpi/acpica/ |
| H A D | utbuffer.c | 133 if (isprint(buf_char)) { in acpi_ut_dump_buffer() 292 if (isprint(buf_char)) { in acpi_ut_dump_buffer_to_file()
|
| H A D | utascii.c | 102 if (!isprint(name[i])) { in acpi_ut_check_and_repair_ascii()
|
| H A D | utstring.c | 90 if (isprint((int)string[i])) { in acpi_ut_print_string()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ |
| H A D | cctype | 54 #undef isprint 70 using ::isprint;
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ |
| H A D | cctype | 54 #undef isprint 70 using ::isprint;
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/ |
| H A D | ctype.h | 16 int isprint(int c);
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/ |
| H A D | ctype.h | 16 int isprint(int c);
|
| /OK3568_Linux_fs/u-boot/scripts/dtc/ |
| H A D | treesource.c | 59 return (isprint((unsigned char)c) in isstring() 122 if (isprint((unsigned char)c)) in write_propval_string()
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/host/xtest/adbg/src/ |
| H A D | adbg_log.c | 67 if (isprint(ch)) in Do_ADBG_HexLog()
|
| /OK3568_Linux_fs/u-boot/include/linux/ |
| H A D | ctype.h | 28 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) macro
|
| /OK3568_Linux_fs/kernel/kernel/debug/kdb/ |
| H A D | kdb_keyboard.c | 174 if (isprint(keychar)) in kdb_get_kbd_char()
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | ctype.h | 32 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) macro
|
| /OK3568_Linux_fs/kernel/tools/include/linux/ |
| H A D | ctype.h | 33 #define isprint(c) ((__ismask(c)&(_P|_U|_L|_D|_SP)) != 0) macro
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | string_helpers.c | 518 if ((flags & ESCAPE_NP && isprint(c)) || in string_escape_mem() 555 if (!isprint(c) || !isascii(c) || c == '"' || c == '\\') in string_escape_mem_ascii()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/ |
| H A D | ctype.h | 114 __exctype (isprint); 195 # define isprint(c) __isctype((c), _ISprint) in __isctype_f()
|