Home
last modified time | relevance | path

Searched refs:islower (Results 1 – 20 of 20) sorted by relevance

/openbmc/linux/tools/include/nolibc/
H A Dctype.h50 int islower(int c) in islower() function
84 return islower(c) || isupper(c); in isalpha()
/openbmc/u-boot/include/linux/
H A Dctype.h27 #define islower(c) ((__ismask(c)&(_L)) != 0) macro
52 if (islower(c)) in __toupper()
/openbmc/linux/include/linux/
H A Dctype.h29 #define islower(c) ((__ismask(c)&(_L)) != 0) macro
58 if (islower(c)) in __toupper()
/openbmc/linux/tools/include/linux/
H A Dctype.h29 #define islower(c) ((__ismask(c)&(_L)) != 0) macro
59 if (islower(c)) in __toupper()
/openbmc/u-boot/lib/
H A Dstrto.c41 while (isxdigit(*cp) && (value = isdigit(*cp) ? *cp-'0' : (islower(*cp) in simple_strtoul()
135 : (islower(*cp) ? toupper(*cp) : *cp) - 'A' + 10) < base) { in simple_strtoull()
/openbmc/qemu/target/hexagon/
H A Dgen_trans_funcs.py114 imm_letter = "i" if imm_type.islower() else "I"
115 immno = 0 if imm_type.islower() else 1
H A Dgen_decodetree.py152 imm_letter = "i" if imm_type.islower() else "I"
180 imm_letter = "i" if imm_type.islower() else "I"
/openbmc/qemu/include/qemu/
H A Dctype.h16 #define qemu_islower(c) islower((unsigned char)(c))
/openbmc/linux/tools/testing/selftests/
H A Dkselftest_harness.h1072 has_positive |= islower(opt); in test_enabled()
1077 return islower(opt); in test_enabled()
1081 return islower(opt); in test_enabled()
1085 return islower(opt); in test_enabled()
/openbmc/u-boot/cmd/
H A Dbinop.c46 value = (islower(d) ? toupper(d) : d) - 'A' + 10; in decode_hexstring()
/openbmc/openbmc/poky/meta/classes/
H A Doelint.bbclass36 elif not section.islower():
/openbmc/qemu/scripts/qapi/
H A Dcommon.py53 if i < length - 1 and c_fun_str[i + 1].islower():
/openbmc/linux/tools/perf/util/
H A Dstring.c58 if (islower(c)) { in perf_atoll()
/openbmc/linux/arch/s390/boot/
H A Dipl_parm.c132 if (!has_lowercase && islower(scp_data[i])) in ipl_block_get_ascii_scpdata()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/rarpd/rarpd/
H A D0005-ethernet.c-remove-it.patch73 - else if (islower(c))
/openbmc/linux/net/smc/
H A Dsmc_clc.c71 if (!isalnum(*ueid) || islower(*ueid)) in smc_clc_ueid_valid()
74 if ((!isalnum(*ueid) || islower(*ueid)) && *ueid != '.' && in smc_clc_ueid_valid()
H A Dsmc_pnet.c300 *pnetid++ = islower(*bf) ? toupper(*bf) : *bf; in smc_pnetid_valid()
/openbmc/linux/Documentation/usb/
H A Dgadget_hid.rst220 if (islower(tok[0])) {
/openbmc/linux/scripts/
H A Dasn1_compiler.c434 if (islower(tokens[tix].content[0])) { in tokenise()
/openbmc/linux/drivers/scsi/qla2xxx/
H A Dtcm_qla2xxx.c74 else if (isxdigit(c) && (islower(c) || !strict)) in tcm_qla2xxx_parse_wwn()