| /linux/tools/include/nolibc/ |
| H A D | ctype.h | 40 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 D | ctype.h | 5 static inline int isdigit(int ch) in isdigit() function 12 if (isdigit(ch)) in isxdigit()
|
| /linux/tools/testing/selftests/kvm/lib/ |
| H A 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/include/linux/ |
| H 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/ |
| H A D | ctype.h | 41 #define isdigit(c) __builtin_isdigit(c) macro 47 #define isdigit(c) __isdigit(c) macro
|
| /linux/tools/power/cpupower/utils/ |
| H 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/arch/riscv/kernel/ |
| H A D | cpufeature.c | 730 if (!isdigit(ext_end[-1])) in riscv_parse_isa_string() 733 while (isdigit(*--ext_end)) in riscv_parse_isa_string() 736 if (tolower(ext_end[0]) != 'p' || !isdigit(ext_end[-1])) { in riscv_parse_isa_string() 741 while (isdigit(*--ext_end)) in riscv_parse_isa_string() 770 if (!isdigit(*isa)) in riscv_parse_isa_string() 773 while (isdigit(*++isa)) in riscv_parse_isa_string() 779 if (!isdigit(*++isa)) { in riscv_parse_isa_string() 784 while (isdigit(*++isa)) in riscv_parse_isa_string()
|
| /linux/tools/bpf/bpftool/ |
| H A D | perf.c | 171 while (isdigit(*pch)) { in show_proc() 191 while (isdigit(*pch)) { in show_proc()
|
| /linux/drivers/net/ethernet/chelsio/cxgb4/ |
| H A D | cxgb4_debugfs.h | 57 return isdigit(c) ? c - '0' : tolower(c) - 'a' + 10; in hex2val()
|
| /linux/drivers/acpi/acpica/ |
| H A D | utprint.c | 144 while (isdigit((int)*string)) { in acpi_ut_scan_number() 371 if (isdigit((int)*format)) { in vsnprintf() 388 if (isdigit((int)*format)) { in vsnprintf()
|
| H A D | utstrsuppt.c | 107 if (!isdigit((int)*string)) { in acpi_ut_convert_decimal_string()
|
| /linux/security/ |
| H A D | device_cgroup.c | 679 } 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 D | cifsroot.c | 32 if (isdigit(*start) || *start == '.') in parse_srvaddr()
|
| /linux/tools/usb/usbip/src/ |
| H A D | usbip_detach.c | 44 if (!isdigit(port[i])) { in detach_port()
|
| /linux/net/netfilter/ |
| H A 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/drivers/firmware/efi/libstub/ |
| H A D | gop.c | 61 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 D | string.c | 146 value = isdigit(*cp) ? *cp - '0' : TOLOWER(*cp) - 'a' + 10; in simple_strtoull()
|
| H A D | vsprintf.c | 27 while (isdigit(**s)) in skip_atoi() 184 if (isdigit(**fmt)) in get_int()
|
| /linux/drivers/usb/gadget/ |
| H A D | epautoconf.c | 96 if (isdigit(ep->name[2])) { in usb_ep_autoconfig_ss()
|
| /linux/tools/tracing/rtla/src/ |
| H A D | utils.c | 134 while (isdigit(*p)) in parse_cpu_set() 141 while (isdigit(*p)) in parse_cpu_set() 297 if (!isdigit(*t_name)) in procfs_is_workload_pid()
|
| /linux/drivers/edac/ |
| H A D | mpc85xx_edac.c | 368 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 D | mtdsuper.c | 133 } else if (isdigit(fc->source[3])) { in get_tree_mtd()
|
| /linux/drivers/accessibility/speakup/ |
| H A D | i18n.c | 446 while (isdigit(*input)) in skip_width() 450 while (isdigit(*input)) in skip_width()
|
| /linux/drivers/net/can/usb/etas_es58x/ |
| H A D | es58x_devlink.c | 60 while (!isdigit(*prod_info)) { in es58x_parse_sw_version()
|
| /linux/tools/lib/perf/ |
| H A D | cpumap.c | 182 if (!isdigit(*cpu_list) && *cpu_list != '\0') in perf_cpu_map__new() 185 while (isdigit(*cpu_list)) { in perf_cpu_map__new()
|