Home
last modified time | relevance | path

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

123456

/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()
H A Dprintf.c22 while (isdigit(**s)) in skip_atoi()
158 if (isdigit(*fmt)) in vsprintf()
174 if (isdigit(*fmt)) in vsprintf()
/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.c705 if (!isdigit(ext_end[-1])) in riscv_parse_isa_string()
708 while (isdigit(*--ext_end)) in riscv_parse_isa_string()
711 if (tolower(ext_end[0]) != 'p' || !isdigit(ext_end[-1])) { in riscv_parse_isa_string()
716 while (isdigit(*--ext_end)) in riscv_parse_isa_string()
745 if (!isdigit(*isa)) in riscv_parse_isa_string()
748 while (isdigit(*++isa)) in riscv_parse_isa_string()
754 if (!isdigit(*++isa)) { in riscv_parse_isa_string()
759 while (isdigit(*++isa)) in riscv_parse_isa_string()
/linux/drivers/acpi/acpica/
H A Dutprint.c144 while (isdigit((int)*string)) { in acpi_ut_scan_number()
371 if (isdigit((int)*format)) { in vsnprintf()
388 if (isdigit((int)*format)) { in vsnprintf()
/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.c685 } 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/fs/smb/client/
H A Dcifsroot.c32 if (isdigit(*start) || *start == '.') in parse_srvaddr()
/linux/net/netfilter/ipvs/
H A 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/tools/usb/usbip/src/
H A Dusbip_detach.c44 if (!isdigit(port[i])) { in detach_port()
/linux/drivers/firmware/efi/libstub/
H A 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()
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/tools/tracing/rtla/src/
H A Dutils.c119 while (isdigit(*p)) in parse_cpu_set()
126 while (isdigit(*p)) in parse_cpu_set()
282 if (!isdigit(*t_name)) in procfs_is_workload_pid()
/linux/net/netfilter/
H A Dnf_conntrack_ftp.c183 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/arch/s390/boot/
H A Dstring.c113 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
/linux/drivers/usb/gadget/
H A Depautoconf.c96 if (isdigit(ep->name[2])) { in usb_ep_autoconfig_ss()
/linux/drivers/edac/
H A Dmpc85xx_edac.c368 if (isdigit(*data)) { in mpc85xx_l2_inject_data_hi_store()
381 if (isdigit(*data)) { in mpc85xx_l2_inject_data_lo_store()
394 if (isdigit(*data)) { in mpc85xx_l2_inject_ctrl_store()
/linux/drivers/mtd/
H A Dmtdsuper.c133 } else if (isdigit(fc->source[3])) { in get_tree_mtd()
/linux/drivers/accessibility/speakup/
H A Di18n.c446 while (isdigit(*input)) in skip_width()
450 while (isdigit(*input)) in skip_width()
/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()

123456