/titanic_44/usr/src/uts/intel/io/acpica/utilities/ |
H A D | utnonansi.c | 88 *String = (char) tolower ((int) *String); in AcpiUtStrlwr() 155 c1 = tolower ((int) *String1); in AcpiUtStricmp() 156 c2 = tolower ((int) *String2); in AcpiUtStricmp() 326 if ((*String == '0') && (tolower ((int) *(String + 1)) == 'x')) in AcpiUtStrtoul64() 554 if (tolower ((int) *(++String)) == 'x') in strtoul64() 581 tolower ((int) *(++String)) == 'x') in strtoul64()
|
H A D | utclib.c | 605 if (tolower (*(++String)) == 'x') in strtoul() 640 tolower (*(++String)) == 'x') in strtoul() 760 tolower ( in tolower() function
|
/titanic_44/usr/src/cmd/acpi/common/ |
H A D | utnonansi.c | 88 *String = (char) tolower ((int) *String); in AcpiUtStrlwr() 155 c1 = tolower ((int) *String1); in AcpiUtStricmp() 156 c2 = tolower ((int) *String2); in AcpiUtStricmp() 326 if ((*String == '0') && (tolower ((int) *(String + 1)) == 'x')) in AcpiUtStrtoul64() 554 if (tolower ((int) *(++String)) == 'x') in strtoul64() 581 tolower ((int) *(++String)) == 'x') in strtoul64()
|
/titanic_44/usr/src/lib/libc/port/locale/ |
H A D | tolower.c | 22 #pragma weak _tolower = tolower 37 #undef tolower 39 tolower(int c) in tolower() function
|
/titanic_44/usr/src/cmd/acpi/acpidump/ |
H A D | apfiles.c | 175 Filename[0] = (char) tolower ((int) Filename[0]); in ApWriteToBinaryFile() 176 Filename[1] = (char) tolower ((int) Filename[1]); in ApWriteToBinaryFile() 177 Filename[2] = (char) tolower ((int) Filename[2]); in ApWriteToBinaryFile() 178 Filename[3] = (char) tolower ((int) Filename[3]); in ApWriteToBinaryFile()
|
/titanic_44/usr/src/lib/libast/common/regex/ |
H A D | regsub.c | 90 c = tolower(c); in subold() 94 c = tolower(c); in subold() 127 c = tolower(c); in subold() 223 c = tolower(c); in subold() 227 c = tolower(c); in subold()
|
/titanic_44/usr/src/cmd/localedef/ |
H A D | ctype.c | 44 int32_t tolower; member 248 ctn->tolower = wc; in add_caseconv() 369 if (ctn->tolower) in dump_ctype() 370 rl.maplower[wc] = ctn->tolower; in dump_ctype() 388 if (ctn->tolower == 0) { in dump_ctype() 391 (last_lo->tolower + 1 == ctn->tolower)) { in dump_ctype() 400 lo[rl.maplower_ext_nranges - 1].map = ctn->tolower; in dump_ctype()
|
/titanic_44/usr/src/lib/libc/sparcv9/gen/ |
H A D | ascii_strcasecmp.s | 161 add %i0, ('a' - 'A'), %i0 ! s1[1] = tolower(s1[1]) 165 add %g1, ('a' - 'A'), %g1 ! s2[1] = tolower(s2[1]) 167 subcc %i0, %g1, %i0 ! tolower(s1[1]) != tolower(s2[1]) ? 209 sethi %hi(0x3f3f3f3f), %l2 ! load m2 for parallel tolower() 210 sethi %hi(0x25252525), %l3 ! load m3 for parallel tolower() 256 cmp %i3, %g1 ! tolower(*s1) != tolower(*s2) ? 297 cmp %i3, %g1 ! tolower(*s1) != tolower(*s2) ? 346 restore %i0, %g0, %o0 ! return tolower(*s1) - tolower(*s2)
|
/titanic_44/usr/src/lib/libmail/common/ |
H A D | casncmp.c | 53 while ((--n >= 0) && (tolower(*s1) == tolower(*s2))) { in casncmp()
|
/titanic_44/usr/src/lib/libast/common/comp/ |
H A D | strcasecmp.c | 47 ac = tolower(ac); 50 bc = tolower(bc);
|
H A D | strncasecmp.c | 51 ac = tolower(ac); 54 bc = tolower(bc);
|
/titanic_44/usr/src/lib/libc/sparc/gen/ |
H A D | ascii_strcasecmp.s | 161 add %i0, ('a' - 'A'), %i0 ! s1[1] = tolower(s1[1]) 165 add %g1, ('a' - 'A'), %g1 ! s2[1] = tolower(s2[1]) 167 subcc %i0, %g1, %i0 ! tolower(s1[1]) != tolower(s2[1]) ? 209 sethi %hi(0x3f3f3f3f), %l2 ! load m2 for parallel tolower() 210 sethi %hi(0x25252525), %l3 ! load m3 for parallel tolower() 256 cmp %i3, %g1 ! tolower(*s1) != tolower(*s2) ? 296 cmp %i3, %g1 ! tolower(*s1) != tolower(*s2) ?
|
/titanic_44/usr/src/lib/libast/common/tm/ |
H A D | tmword.c | 56 if (!isalpha(c) || c != *t && (islower(c) ? toupper(c) : tolower(c)) != *t) in tmword() 76 while (isalpha(c = *s++) && (c == *t || (islower(c) ? toupper(c) : tolower(c)) == *t)) t++; in tmword()
|
/titanic_44/usr/src/cmd/mandoc/ |
H A D | mdoc_hash.c | 52 major = 12 * (tolower((unsigned char)p[1]) - 97); in mdoc_hash_init() 77 major = 12 * (tolower((unsigned char)p[1]) - 97); in mdoc_hash_find()
|
H A D | tbl_layout.c | 150 switch (tolower((unsigned char)p[(*pos)++])) { in mods() 183 switch (tolower((unsigned char)p[(*pos)++])) { in mods() 224 if (tolower((unsigned char)p[*pos]) == keys[i].name) in cell()
|
/titanic_44/usr/src/stand/lib/sa/ |
H A D | ctype.h | 72 #ifndef tolower 73 extern int tolower(int);
|
/titanic_44/usr/src/cmd/cmd-crypto/pktool/ |
H A D | genkey.c | 134 if (tolower(senstr[0]) == 'y') in genkey_pkcs11() 136 else if (tolower(senstr[0]) == 'n') in genkey_pkcs11() 147 if (tolower(extstr[0]) == 'y') in genkey_pkcs11() 149 else if (tolower(extstr[0]) == 'n') in genkey_pkcs11() 501 if (tolower(printstr[0]) == 'y') in pk_genkey() 503 else if (tolower(printstr[0]) == 'n') in pk_genkey()
|
/titanic_44/usr/src/head/ |
H A D | ctype.h | 54 using std::tolower; 85 #define _tolower(c) (tolower(c))
|
/titanic_44/usr/src/ucbcmd/from/ |
H A D | from.c | 49 *name = tolower(*name); in main() 108 ch = isupper(*line) ? tolower(*line) : *line; in match()
|
/titanic_44/usr/src/lib/libsmbfs/smb/ |
H A D | nls.c | 69 nls_lower[i] = tolower(i); in nls_setlocale() 175 *dst++ = tolower(*src++); in nls_str_lower()
|
/titanic_44/usr/src/tools/cscope-fast/ |
H A D | input.c | 99 firstchar = tolower(firstchar); in getaline() 126 c = tolower(c); in getaline()
|
/titanic_44/usr/src/uts/common/fs/sockfs/ |
H A D | nl7curi.h | 47 #ifndef tolower 48 #define tolower(c) ((c) >= 'A' && (c) <= 'Z' ? (c) | 0x20 : (c)) macro
|
/titanic_44/usr/src/cmd/vi/port/ |
H A D | ex_re.c | 685 c = tolower(c); in fixcase() 918 *gp++ = (value(vi_IGNORECASE) ? tolower(c) : c); in vi_compile() 963 *gp++ = (value(vi_IGNORECASE) ? tolower(c) : c); in vi_compile() 979 *gp++ = (value(vi_IGNORECASE) ? tolower(c) : c); in vi_compile() 1000 *gp++ = (value(vi_IGNORECASE) ? tolower(c) : c); in vi_compile() 1088 *p1++ = tolower(c); in execute() 1115 *p1++ = tolower(c); in execute()
|
/titanic_44/usr/src/lib/libtecla/common/ |
H A D | hash.c | 517 *dst = tolower(*src); in _new_HashNode() 579 h = 65599UL * h + tolower((int)*kp); /* 65599 is a prime close to 2^16 */ in _find_HashBucket() 640 } while(cn && cn==tolower(cl)); in _ht_lower_strcmp() 641 return cn - tolower(cl); in _ht_lower_strcmp()
|
/titanic_44/usr/src/cmd/dtrace/test/tst/common/funcs/ |
H A D | err.D_PROTO_ARG.tolower.d | 28 trace(tolower(2152006));
|