Home
last modified time | relevance | path

Searched refs:isdigit (Results 1 – 25 of 271) sorted by relevance

1234567891011

/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/syslog-ng/files/
H A DCVE-2022-38725-0007.patch33 isdigit(*(src+1)) &&
34 isdigit(*(src+2)) &&
36 isdigit(*(src+4)) &&
37 isdigit(*(src+5)) &&
38 - !isdigit(*(src+6));
39 + (length < 7 || !isdigit(*(src+6)));
H A DCVE-2022-38725-0004.patch30 - while (isdigit(*src))
31 + while (*length > 0 && isdigit(*src))
/OK3568_Linux_fs/u-boot/lib/
H A Dstrto.c41 while (isxdigit(*cp) && (value = isdigit(*cp) ? *cp-'0' : (islower(*cp) in simple_strtoul()
138 while (isxdigit(*cp) && (value = isdigit(*cp) ? *cp - '0' in simple_strtoull()
156 if (isdigit(end[-1])) { in trailing_strtoln()
158 if (!isdigit(*p)) in trailing_strtoln()
H A Dstdlib.c25 while (isdigit(c)) { in atol()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dcctype24 int isdigit(int c);
63 #ifdef isdigit
64 #undef isdigit
108 using ::isdigit;
H A Dctype.h47 #undef isdigit
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dcctype24 int isdigit(int c);
63 #ifdef isdigit
64 #undef isdigit
108 using ::isdigit;
H A Dctype.h47 #undef isdigit
/OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/
H A Dscript_parser.c81 if (isdigit(ch)) { in __get_str2int()
126 if (isdigit(ch)) in __get_str2int()
200 else if (isdigit(src[0]) && (src[1] == 'x' || src[2] == 'X')) { in __get_str2int()
204 if (isdigit(ch)) { in __get_str2int()
224 else if (isdigit(src[0]) || in __get_str2int()
225 (isdigit(src[1]) && src[0] == '-')) { in __get_str2int()
237 if (isdigit(ch)) { in __get_str2int()
/OK3568_Linux_fs/kernel/arch/x86/boot/
H A Dctype.h5 static inline int isdigit(int ch) in isdigit() function
12 if (isdigit(ch)) in isxdigit()
H A Dprintf.c22 while (isdigit(**s)) in skip_atoi()
158 if (isdigit(*fmt)) in vsprintf()
174 if (isdigit(*fmt)) in vsprintf()
H A Dstring.c94 while (isdigit(*s)) in atou()
133 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
/OK3568_Linux_fs/u-boot/drivers/usb/gadget/
H A Depautoconf.c21 #define isdigit(c) ('0' <= (c) && (c) <= '9') macro
106 if (!isdigit(*tmp)) { in ep_matches()
149 if (isdigit(ep->name[2])) { in ep_matches()
/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 Dstandard.hpp54 isdigit(int ch) in isdigit() function
56 return std::isdigit(ch) ? true : false; in isdigit()
/OK3568_Linux_fs/u-boot/drivers/video/
H A Dvideomodes.c248 while (*p && !isdigit(*p)) in video_get_video_mode()
255 while (*p && !isdigit(*p)) in video_get_video_mode()
262 while (*p && !isdigit(*p)) in video_get_video_mode()
269 while (*p && !isdigit(*p)) in video_get_video_mode()
/OK3568_Linux_fs/kernel/tools/power/cpupower/utils/
H A Dcpufreq-set.c74 for (scan = str; isdigit(*scan) || *scan == '.'; scan++) { in string_to_frequency()
98 for (cp = 0; isdigit(str[cp]); cp++) in string_to_frequency()
102 while (power > -1 && isdigit(str[cp+1])) { in string_to_frequency()
/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 Dsafe-ctype.h129 #undef isdigit
130 #define isdigit(c) do_not_use_isdigit_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 Dsafe-ctype.h129 #undef isdigit
130 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
/OK3568_Linux_fs/kernel/tools/bpf/bpftool/
H A Dperf.c166 while (isdigit(*pch)) { in show_proc()
187 while (isdigit(*pch)) { in show_proc()
/OK3568_Linux_fs/kernel/drivers/acpi/acpica/
H A Dutprint.c144 while (isdigit((int)*string)) { in acpi_ut_scan_number()
374 if (isdigit((int)*format)) { in vsnprintf()
391 if (isdigit((int)*format)) { in vsnprintf()
/OK3568_Linux_fs/kernel/security/
H A Ddevice_cgroup.c659 } else if (isdigit(*b)) { in devcgroup_update_access()
664 if (!isdigit(*b)) in devcgroup_update_access()
681 } else if (isdigit(*b)) { in devcgroup_update_access()
686 if (!isdigit(*b)) in devcgroup_update_access()
/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 Dcctype51 #undef isdigit
67 using ::isdigit;
/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 Dcctype51 #undef isdigit
67 using ::isdigit;
/OK3568_Linux_fs/external/security/rk_tee_user/v1/export-user_ta/include/
H A Dctype.h30 int isdigit(int c);
/OK3568_Linux_fs/kernel/net/netfilter/ipvs/
H A Dip_vs_ftp.c130 if (!ext && isdigit(*s)) in ip_vs_ftp_get_addrport()
146 if (isdigit(c)) { in ip_vs_ftp_get_addrport()
222 if (!isdigit(*s)) in ip_vs_ftp_get_addrport()

1234567891011