| /Linux-v6.6/tools/include/nolibc/ |
| D | ctype.h | 37 int isdigit(int c) in isdigit() function 78 return isdigit(c) || (unsigned int)(c - 'A') < 6 || (unsigned int)(c - 'a') < 6; in isxdigit() 90 return isalpha(c) || isdigit(c); in isalnum()
|
| /Linux-v6.6/arch/riscv/kernel/ |
| D | cpufeature.c | 250 if (!isdigit(ext_end[-1])) in riscv_parse_isa_string() 253 while (isdigit(*--ext_end)) in riscv_parse_isa_string() 256 if (tolower(ext_end[0]) != 'p' || !isdigit(ext_end[-1])) { in riscv_parse_isa_string() 261 while (isdigit(*--ext_end)) in riscv_parse_isa_string() 290 if (!isdigit(*isa)) in riscv_parse_isa_string() 293 while (isdigit(*++isa)) in riscv_parse_isa_string() 299 if (!isdigit(*++isa)) { in riscv_parse_isa_string() 304 while (isdigit(*++isa)) in riscv_parse_isa_string()
|
| /Linux-v6.6/arch/x86/boot/ |
| D | ctype.h | 5 static inline int isdigit(int ch) in isdigit() function 12 if (isdigit(ch)) in isxdigit()
|
| D | printf.c | 22 while (isdigit(**s)) in skip_atoi() 158 if (isdigit(*fmt)) in vsprintf() 174 if (isdigit(*fmt)) in vsprintf()
|
| D | string.c | 94 while (isdigit(*s)) in atou() 133 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
|
| /Linux-v6.6/tools/testing/selftests/kvm/lib/ |
| D | guest_sprintf.c | 12 static int isdigit(int ch) in isdigit() function 21 while (isdigit(**s)) in skip_atoi() 169 if (isdigit(*fmt)) in guest_vsnprintf() 185 if (isdigit(*fmt)) in guest_vsnprintf()
|
| /Linux-v6.6/include/linux/ |
| D | ctype.h | 41 #define isdigit(c) __builtin_isdigit(c) macro 43 static inline int isdigit(int c) in isdigit() function
|
| /Linux-v6.6/tools/include/linux/ |
| D | ctype.h | 41 #define isdigit(c) __builtin_isdigit(c) macro 47 #define isdigit(c) __isdigit(c) macro
|
| /Linux-v6.6/tools/power/cpupower/utils/ |
| D | cpufreq-set.c | 74 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()
|
| /Linux-v6.6/tools/bpf/bpftool/ |
| D | perf.c | 171 while (isdigit(*pch)) { in show_proc() 191 while (isdigit(*pch)) { in show_proc()
|
| /Linux-v6.6/drivers/acpi/acpica/ |
| D | utprint.c | 144 while (isdigit((int)*string)) { in acpi_ut_scan_number() 374 if (isdigit((int)*format)) { in vsnprintf() 391 if (isdigit((int)*format)) { in vsnprintf()
|
| /Linux-v6.6/drivers/net/ethernet/chelsio/cxgb4/ |
| D | cxgb4_debugfs.h | 57 return isdigit(c) ? c - '0' : tolower(c) - 'a' + 10; in hex2val()
|
| /Linux-v6.6/security/ |
| D | device_cgroup.c | 685 } else if (isdigit(*b)) { in devcgroup_update_access() 690 if (!isdigit(*b)) in devcgroup_update_access() 707 } else if (isdigit(*b)) { in devcgroup_update_access() 712 if (!isdigit(*b)) in devcgroup_update_access()
|
| /Linux-v6.6/block/ |
| D | early-lookup.c | 175 while (p > s && isdigit(p[-1])) in devt_from_devname() 188 if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p') in devt_from_devname()
|
| /Linux-v6.6/fs/smb/client/ |
| D | cifsroot.c | 32 if (isdigit(*start) || *start == '.') in parse_srvaddr()
|
| /Linux-v6.6/net/netfilter/ipvs/ |
| D | ip_vs_ftp.c | 130 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()
|
| /Linux-v6.6/tools/usb/usbip/src/ |
| D | usbip_detach.c | 44 if (!isdigit(port[i])) { in detach_port()
|
| /Linux-v6.6/tools/tracing/rtla/src/ |
| D | utils.c | 116 while (isdigit(*p)) in parse_cpu_set() 123 while (isdigit(*p)) in parse_cpu_set() 287 if (!isdigit(*t_name)) in procfs_is_workload_pid()
|
| /Linux-v6.6/arch/s390/boot/ |
| D | string.c | 85 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
|
| /Linux-v6.6/net/netfilter/ |
| D | nf_conntrack_ftp.c | 183 if (isdigit(data[i])) in try_rfc1123() 234 if (isdigit(delim) || delim < 33 || delim > 126 || data[2] != delim) { in try_eprt() 278 if (isdigit(delim) || delim < 33 || delim > 126 || in try_epsv_response()
|
| /Linux-v6.6/drivers/edac/ |
| D | fsl_ddr_edac.c | 95 if (isdigit(*data)) { in fsl_mc_inject_data_hi_store() 115 if (isdigit(*data)) { in fsl_mc_inject_data_lo_store() 135 if (isdigit(*data)) { in fsl_mc_inject_ctrl_store()
|
| /Linux-v6.6/drivers/usb/gadget/ |
| D | epautoconf.c | 96 if (isdigit(ep->name[2])) { in usb_ep_autoconfig_ss()
|
| /Linux-v6.6/drivers/firmware/efi/libstub/ |
| D | string.c | 146 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
|
| D | vsprintf.c | 27 while (isdigit(**s)) in skip_atoi() 184 if (isdigit(**fmt)) in get_int()
|
| D | gop.c | 60 if (!isdigit(*option)) in parse_res() 63 if (*option++ != 'x' || !isdigit(*option)) in parse_res() 74 } else if (isdigit(*option)) in parse_res()
|