Home
last modified time | relevance | path

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

12345

/Linux-v5.15/arch/x86/boot/
Dctype.h5 static inline int isdigit(int ch) in isdigit() function
12 if (isdigit(ch)) in isxdigit()
Dprintf.c22 while (isdigit(**s)) in skip_atoi()
158 if (isdigit(*fmt)) in vsprintf()
174 if (isdigit(*fmt)) in vsprintf()
Dstring.c94 while (isdigit(*s)) in atou()
133 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
/Linux-v5.15/include/linux/
Dctype.h41 #define isdigit(c) __builtin_isdigit(c) macro
43 static inline int isdigit(int c) in isdigit() function
/Linux-v5.15/tools/include/linux/
Dctype.h41 #define isdigit(c) __builtin_isdigit(c) macro
47 #define isdigit(c) __isdigit(c) macro
/Linux-v5.15/tools/power/cpupower/utils/
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()
/Linux-v5.15/tools/bpf/bpftool/
Dperf.c166 while (isdigit(*pch)) { in show_proc()
187 while (isdigit(*pch)) { in show_proc()
/Linux-v5.15/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_debugfs.h57 return isdigit(c) ? c - '0' : tolower(c) - 'a' + 10; in hex2val()
/Linux-v5.15/drivers/acpi/acpica/
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()
/Linux-v5.15/security/
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()
/Linux-v5.15/fs/cifs/
Dcifsroot.c32 if (isdigit(*start) || *start == '.') in parse_srvaddr()
/Linux-v5.15/net/netfilter/ipvs/
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()
/Linux-v5.15/drivers/firmware/efi/libstub/
Dstring.c97 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
Dvsprintf.c27 while (isdigit(**s)) in skip_atoi()
184 if (isdigit(**fmt)) in get_int()
Dgop.c60 if (!isdigit(*option)) in parse_res()
63 if (*option++ != 'x' || !isdigit(*option)) in parse_res()
74 } else if (isdigit(*option)) in parse_res()
/Linux-v5.15/tools/usb/usbip/src/
Dusbip_detach.c44 if (!isdigit(port[i])) { in detach_port()
/Linux-v5.15/arch/s390/boot/
Dstring.c85 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
/Linux-v5.15/tools/lib/perf/
Dcpumap.c193 if (!isdigit(*cpu_list) && *cpu_list != '\0') in perf_cpu_map__new()
196 while (isdigit(*cpu_list)) { in perf_cpu_map__new()
/Linux-v5.15/drivers/edac/
Dfsl_ddr_edac.c98 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()
Dmpc85xx_edac.c369 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-v5.15/net/netfilter/
Dnf_conntrack_ftp.c187 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-v5.15/drivers/usb/gadget/
Depautoconf.c96 if (isdigit(ep->name[2])) { in usb_ep_autoconfig_ss()
/Linux-v5.15/fs/afs/
Daddr_list.c178 if (p >= end || !isdigit(*p)) { in afs_parse_text_addrs()
190 } while (p < end && isdigit(*p)); in afs_parse_text_addrs()
/Linux-v5.15/drivers/accessibility/speakup/
Di18n.c446 while (isdigit(*input)) in skip_width()
450 while (isdigit(*input)) in skip_width()
/Linux-v5.15/init/
Ddo_mounts.c208 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()

12345