Home
last modified time | relevance | path

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

12345

/linux/tools/include/nolibc/
H A Dctype.h40 int isdigit(int c) in isdigit() function
81 return isdigit(c) || (unsigned int)(c - 'A') < 6 || (unsigned int)(c - 'a') < 6; in isxdigit()
93 return isalpha(c) || isdigit(c); in isalnum()
/linux/arch/x86/boot/
H A Dctype.h5 static inline int isdigit(int ch) in isdigit() function
12 if (isdigit(ch)) in isxdigit()
/linux/tools/testing/selftests/kvm/lib/
H A Dguest_sprintf.c12 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/include/linux/
H A Dctype.h41 #define isdigit(c) __builtin_isdigit(c) macro
43 static inline int isdigit(int c) in isdigit() function
/linux/tools/include/linux/
H A Dctype.h41 #define isdigit(c) __builtin_isdigit(c) macro
47 #define isdigit(c) __isdigit(c) macro
/linux/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()
/linux/arch/riscv/kernel/
H A Dcpufeature.c789 if (!isdigit(ext_end[-1])) in riscv_parse_isa_string()
792 while (isdigit(*--ext_end)) in riscv_parse_isa_string()
795 if (tolower(ext_end[0]) != 'p' || !isdigit(ext_end[-1])) { in riscv_parse_isa_string()
800 while (isdigit(*--ext_end)) in riscv_parse_isa_string()
829 if (!isdigit(*isa)) in riscv_parse_isa_string()
832 while (isdigit(*++isa)) in riscv_parse_isa_string()
838 if (!isdigit(*++isa)) { in riscv_parse_isa_string()
843 while (isdigit(*++isa)) in riscv_parse_isa_string()
/linux/tools/bpf/bpftool/
H A Dperf.c171 while (isdigit(*pch)) { in show_proc()
191 while (isdigit(*pch)) { in show_proc()
/linux/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_debugfs.h57 return isdigit(c) ? c - '0' : tolower(c) - 'a' + 10; in hex2val()
/linux/security/
H A Ddevice_cgroup.c679 } else if (isdigit(*b)) { in devcgroup_update_access()
684 if (!isdigit(*b)) in devcgroup_update_access()
701 } else if (isdigit(*b)) { in devcgroup_update_access()
706 if (!isdigit(*b)) in devcgroup_update_access()
/linux/fs/smb/client/
H A Dcifsroot.c32 if (isdigit(*start) || *start == '.') in parse_srvaddr()
/linux/tools/usb/usbip/src/
H A Dusbip_detach.c44 if (!isdigit(port[i])) { in detach_port()
/linux/drivers/firmware/efi/libstub/
H A Dgop.c61 if (!isdigit(*option)) in parse_res()
64 if (*option++ != 'x' || !isdigit(*option)) in parse_res()
75 } else if (isdigit(*option)) in parse_res()
H A Dstring.c146 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
H A Dvsprintf.c27 while (isdigit(**s)) in skip_atoi()
184 if (isdigit(**fmt)) in get_int()
/linux/net/netfilter/
H A Dnf_conntrack_ftp.c174 if (isdigit(data[i])) in try_rfc1123()
226 if (isdigit(delim) || delim < 33 || delim > 126 || data[2] != delim) { in try_eprt()
270 if (isdigit(delim) || delim < 33 || delim > 126 || in try_epsv_response()
/linux/drivers/usb/gadget/
H A Depautoconf.c96 if (isdigit(ep->name[2])) { in usb_ep_autoconfig_ss()
/linux/tools/tracing/rtla/src/
H A Dutils.c132 while (isdigit(*p)) in parse_cpu_set()
139 while (isdigit(*p)) in parse_cpu_set()
328 if (!isdigit(*t_name))
/linux/drivers/edac/
H A Dfsl_ddr_edac.c106 if (isdigit(*data)) { in fsl_mc_inject_data_hi_store()
126 if (isdigit(*data)) { in fsl_mc_inject_data_lo_store()
146 if (isdigit(*data)) { in fsl_mc_inject_ctrl_store()
H A Dmpc85xx_edac.c367 if (isdigit(*data)) { in mpc85xx_l2_inject_data_hi_store()
380 if (isdigit(*data)) { in mpc85xx_l2_inject_data_lo_store()
393 if (isdigit(*data)) { in mpc85xx_l2_inject_ctrl_store()
/linux/fs/afs/
H A Daddr_list.c198 if (p >= end || !isdigit(*p)) { in afs_parse_text_addrs()
210 } while (p < end && isdigit(*p)); in afs_parse_text_addrs()
/linux/drivers/acpi/acpica/
H A Dutstrsuppt.c107 if (!isdigit((int)*string)) { in acpi_ut_convert_decimal_string()
/linux/drivers/net/can/usb/etas_es58x/
H A Des58x_devlink.c60 while (!isdigit(*prod_info)) { in es58x_parse_sw_version()
/linux/tools/lib/perf/
H A Dcpumap.c179 if (!isdigit(*cpu_list) && *cpu_list != '\0') in perf_cpu_map__new()
182 while (isdigit(*cpu_list)) { in perf_cpu_map__new()
/linux/sound/hda/codecs/side-codecs/
H A Dhda_component.c129 if (isdigit(d[n])) in hda_comp_match_dev_name()

12345