Searched refs:isdigit (Results 1 - 25 of 135) sorted by relevance

123456

/linux-master/arch/x86/boot/
H A Dctype.h5 static inline int isdigit(int ch) function
12 if (isdigit(ch))
H A Dprintf.c22 while (isdigit(**s))
158 if (isdigit(*fmt))
174 if (isdigit(*fmt))
H A Dstring.c94 while (isdigit(*s))
133 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10;
/linux-master/tools/include/nolibc/
H A Dctype.h37 int isdigit(int c) function
78 return isdigit(c) || (unsigned int)(c - 'A') < 6 || (unsigned int)(c - 'a') < 6;
90 return isalpha(c) || isdigit(c);
/linux-master/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_debugfs.h57 return isdigit(c) ? c - '0' : tolower(c) - 'a' + 10;
/linux-master/include/linux/
H A Dctype.h41 #define isdigit(c) __builtin_isdigit(c) macro
43 static inline int isdigit(int c) function
/linux-master/tools/include/linux/
H A Dctype.h41 #define isdigit(c) __builtin_isdigit(c) macro
47 #define isdigit(c) __isdigit(c) macro
/linux-master/arch/riscv/kernel/
H A Dcpufeature.c400 if (!isdigit(ext_end[-1]))
403 while (isdigit(*--ext_end))
406 if (tolower(ext_end[0]) != 'p' || !isdigit(ext_end[-1])) {
411 while (isdigit(*--ext_end))
440 if (!isdigit(*isa))
443 while (isdigit(*++isa))
449 if (!isdigit(*++isa)) {
454 while (isdigit(*++isa))
/linux-master/arch/s390/boot/
H A Dstring.c85 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10;
/linux-master/fs/smb/client/
H A Dcifsroot.c32 if (isdigit(*start) || *start == '.')
/linux-master/tools/usb/usbip/src/
H A Dusbip_detach.c44 if (!isdigit(port[i])) {
/linux-master/tools/testing/selftests/kvm/lib/
H A Dguest_sprintf.c12 static int isdigit(int ch) function
21 while (isdigit(**s))
169 if (isdigit(*fmt))
185 if (isdigit(*fmt))
/linux-master/kernel/trace/
H A Dtrace_events_inject.c74 if (isdigit(str[i]) || str[i] == '-') {
/linux-master/tools/power/cpupower/utils/
H A Dcpufreq-set.c74 for (scan = str; isdigit(*scan) || *scan == '.'; scan++) {
98 for (cp = 0; isdigit(str[cp]); cp++)
102 while (power > -1 && isdigit(str[cp+1])) {
/linux-master/drivers/acpi/acpica/
H A Dutprint.c144 while (isdigit((int)*string)) {
374 if (isdigit((int)*format)) {
391 if (isdigit((int)*format)) {
H A Dutstrsuppt.c107 if (!isdigit((int)*string)) {
/linux-master/drivers/usb/gadget/
H A Depautoconf.c96 if (isdigit(ep->name[2])) {
/linux-master/drivers/firmware/efi/libstub/
H A Dstring.c146 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10;
/linux-master/drivers/mtd/
H A Dmtdsuper.c133 } else if (isdigit(fc->source[3])) {
/linux-master/block/
H A Dearly-lookup.c175 while (p > s && isdigit(p[-1]))
188 if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p')
/linux-master/tools/bpf/bpftool/
H A Dperf.c171 while (isdigit(*pch)) {
191 while (isdigit(*pch)) {
/linux-master/net/netfilter/ipvs/
H A Dip_vs_ftp.c130 if (!ext && isdigit(*s))
146 if (isdigit(c)) {
222 if (!isdigit(*s))
/linux-master/tools/tracing/rtla/src/
H A Dutils.c116 while (isdigit(*p))
123 while (isdigit(*p))
281 if (!isdigit(*t_name))
/linux-master/lib/
H A Dparser.c54 if (isdigit(*p))
/linux-master/security/
H A Ddevice_cgroup.c685 } else if (isdigit(*b)) {
690 if (!isdigit(*b))
707 } else if (isdigit(*b)) {
712 if (!isdigit(*b))

Completed in 272 milliseconds

123456