/linux/arch/x86/boot/ |
A D | ctype.h | 5 static inline int isdigit(int ch) in isdigit() function 12 if (isdigit(ch)) in isxdigit()
|
A D | printf.c | 22 while (isdigit(**s)) in skip_atoi() 158 if (isdigit(*fmt)) in vsprintf() 174 if (isdigit(*fmt)) in vsprintf()
|
A D | string.c | 94 while (isdigit(*s)) in atou() 133 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
|
/linux/include/linux/ |
A D | ctype.h | 41 #define isdigit(c) __builtin_isdigit(c) macro 43 static inline int isdigit(int c) in isdigit() function
|
/linux/tools/include/linux/ |
A D | ctype.h | 41 #define isdigit(c) __builtin_isdigit(c) macro 47 #define isdigit(c) __isdigit(c) macro
|
/linux/tools/power/cpupower/utils/ |
A 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/tools/bpf/bpftool/ |
A D | perf.c | 166 while (isdigit(*pch)) { in show_proc() 187 while (isdigit(*pch)) { in show_proc()
|
/linux/drivers/acpi/acpica/ |
A 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/security/ |
A D | device_cgroup.c | 659 } 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()
|
/linux/net/netfilter/ipvs/ |
A 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/drivers/net/ethernet/chelsio/cxgb4/ |
A D | cxgb4_debugfs.h | 57 return isdigit(c) ? c - '0' : tolower(c) - 'a' + 10; in hex2val()
|
/linux/fs/cifs/ |
A D | cifsroot.c | 32 if (isdigit(*start) || *start == '.') in parse_srvaddr()
|
/linux/drivers/edac/ |
A D | fsl_ddr_edac.c | 98 if (isdigit(*data)) { in fsl_mc_inject_data_hi_store() 118 if (isdigit(*data)) { in fsl_mc_inject_data_lo_store() 138 if (isdigit(*data)) { in fsl_mc_inject_ctrl_store()
|
A D | mpc85xx_edac.c | 369 if (isdigit(*data)) { in mpc85xx_l2_inject_data_hi_store() 382 if (isdigit(*data)) { in mpc85xx_l2_inject_data_lo_store() 395 if (isdigit(*data)) { in mpc85xx_l2_inject_ctrl_store()
|
/linux/net/netfilter/ |
A D | nf_conntrack_ftp.c | 187 if (isdigit(data[i])) in try_rfc1123() 238 if (isdigit(delim) || delim < 33 || delim > 126 || data[2] != delim) { in try_eprt() 282 if (isdigit(delim) || delim < 33 || delim > 126 || in try_epsv_response()
|
/linux/drivers/firmware/efi/libstub/ |
A D | string.c | 97 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
|
A 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()
|
A D | vsprintf.c | 27 while (isdigit(**s)) in skip_atoi() 184 if (isdigit(**fmt)) in get_int()
|
/linux/tools/usb/usbip/src/ |
A D | usbip_detach.c | 44 if (!isdigit(port[i])) { in detach_port()
|
/linux/tools/lib/perf/ |
A D | cpumap.c | 193 if (!isdigit(*cpu_list) && *cpu_list != '\0') in perf_cpu_map__new() 196 while (isdigit(*cpu_list)) { in perf_cpu_map__new()
|
/linux/arch/s390/boot/ |
A D | string.c | 85 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
|
/linux/drivers/usb/gadget/ |
A D | epautoconf.c | 96 if (isdigit(ep->name[2])) { in usb_ep_autoconfig_ss()
|
/linux/drivers/accessibility/speakup/ |
A D | i18n.c | 446 while (isdigit(*input)) in skip_width() 450 while (isdigit(*input)) in skip_width()
|
/linux/fs/afs/ |
A D | addr_list.c | 178 if (p >= end || !isdigit(*p)) { in afs_parse_text_addrs() 190 } while (p < end && isdigit(*p)); in afs_parse_text_addrs()
|
/linux/init/ |
A D | do_mounts.c | 208 while (p > s && isdigit(p[-1])) in devt_from_devname() 221 if (p < s + 2 || !isdigit(p[-2]) || p[-1] != 'p') in devt_from_devname()
|