/freebsd/stand/libsa/ |
H A D | strcasecmp.c | 40 while (tolower(*us1) == tolower(*us2++)) in strcasecmp() 43 return (tolower(*us1) - tolower(*--us2)); in strcasecmp() 55 if (tolower(*us1) != tolower(*us2++)) in strncasecmp() 56 return (tolower(*us1) - tolower(*--us2)); in strncasecmp()
|
/freebsd/sys/libkern/ |
H A D | strcasecmp.c | 45 while (tolower(*us1) == tolower(*us2)) { in strcasecmp() 50 return (tolower(*us1) - tolower(*us2)); in strcasecmp() 62 if (tolower(*us1) != tolower(*us2)) in strncasecmp() 63 return (tolower(*us1) - tolower(*us2)); in strncasecmp()
|
H A D | fnmatch.c | 145 (tolower((unsigned char)c) == in fnmatch() 146 tolower((unsigned char)*string))) in fnmatch() 173 test = tolower((unsigned char)test); in rangematch() 192 c = tolower((unsigned char)c); in rangematch() 203 c2 = tolower((unsigned char)c2); in rangematch()
|
H A D | strcasestr.c | 54 c = tolower((unsigned char)c); in strcasestr() 60 } while ((char)tolower((unsigned char)sc) != c); in strcasestr()
|
/freebsd/contrib/file/src/ |
H A D | strcasestr.c | 54 if (tolower(*us1) != tolower(*us2++)) in _strncasecmp() 55 return tolower(*us1) - tolower(*--us2); in _strncasecmp() 73 c = tolower((unsigned char)c); in strcasestr() 79 } while ((char)tolower((unsigned char)sc) != c); in strcasestr()
|
/freebsd/contrib/unbound/util/data/ |
H A D | dname.c | 119 tolower((unsigned char)*d1) != tolower((unsigned char)*d2)) { in query_dname_compare() 120 if(tolower((unsigned char)*d1) < tolower((unsigned char)*d2)) in query_dname_compare() 143 *dname = (uint8_t)tolower((unsigned char)*dname); in query_dname_tolower() 172 *dname = (uint8_t)tolower((unsigned char)*dname); in pkt_dname_tolower() 272 if(tolower((unsigned char)*d1) != tolower((unsigned char)*d2)) { in dname_pkt_compare() 273 if(tolower((unsigned char)*d1) < tolower((unsigned char)*d2)) in dname_pkt_compare() 300 labuf[++i] = (uint8_t)tolower((unsigned char)*dname); in dname_query_hash() 336 labuf[++i] = (uint8_t)tolower((unsigned char)*dname); in dname_pkt_hash() 474 if(*p1 != *p2 && tolower((unsigned char)*p1) != tolower((unsigned char)*p2)) { in memlowercmp() 475 if(tolower((unsigned char)*p1) < tolower((unsigned char)*p2)) in memlowercmp() [all …]
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | fnmatch.c | 231 (tolower((unsigned char)**string) >= in fnmatch_ch() 232 tolower((unsigned char)*startch)) && in fnmatch_ch() 233 (tolower((unsigned char)**string) <= in fnmatch_ch() 234 tolower((unsigned char)**pattern))) in fnmatch_ch() 246 (tolower((unsigned char)**string) == in fnmatch_ch() 247 tolower((unsigned char)**pattern))) in fnmatch_ch() 273 (tolower((unsigned char)**string) == in fnmatch_ch() 274 tolower((unsigned char)**pattern))) in fnmatch_ch()
|
H A D | strcasestr.c | 55 c = (char)tolower((unsigned char)c); in strcasestr() 61 } while ((char)tolower((unsigned char)sc) != c); in strcasestr()
|
/freebsd/contrib/llvm-project/libcxx/src/experimental/ |
H A D | tzdb.cpp | 86 if (std::tolower(__input.peek()) == __suffix) in __skip() 92 if (std::tolower(__input.peek()) == __c) in __skip() 97 if (std::tolower(__input.get()) != __expected) in __matches() 103 if (std::tolower(__input.get()) != __c) in __matches() 175 switch (std::tolower(__input.get())) { in __parse_weekday() 185 switch (std::tolower(__input.get())) { in __parse_weekday() 197 switch (std::tolower(__input.get())) { in __parse_weekday() 217 switch (std::tolower(__input.get())) { in __parse_month() 219 switch (std::tolower(__input.get())) { in __parse_month() 239 switch (std::tolower(__input.get())) { in __parse_month() [all …]
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
H A D | OptEmitter.cpp | 24 char a = tolower(*A), b = tolower(*B); in StrCmpOptionName() 29 a = tolower(*++X); in StrCmpOptionName() 30 b = tolower(*++Y); in StrCmpOptionName()
|
/freebsd/sys/contrib/dev/mediatek/mt76/ |
H A D | zzz_fw_ports_fwget.sh | 256 tolower($1), drv, tolower($2); 261 tolower($1), drv, tolower($2); 279 drv, tolower($2);
|
/freebsd/crypto/heimdal/appl/telnet/libtelnet/ |
H A D | genget.c | 44 #define LOWER(x) (isupper(x) ? tolower(x) : (x)) 63 while (tolower((unsigned char)c1) == tolower((unsigned char)c2)) { in isprefix()
|
/freebsd/usr.bin/localedef/ |
H A D | ctype.c | 83 int32_t tolower; member 287 ctn->tolower = wc; in add_caseconv() 421 if (ctn->tolower) in dump_ctype() 422 rl.maplower[wc] = htote(ctn->tolower); in dump_ctype() 440 if (ctn->tolower == 0) { in dump_ctype() 443 (last_lo->tolower + 1 == ctn->tolower)) { in dump_ctype() 452 htote(ctn->tolower); in dump_ctype()
|
/freebsd/sys/contrib/dev/acpica/components/utilities/ |
H A D | utnonansi.c | 195 *String = (char) tolower ((int) *String); in AcpiUtStrlwr() 262 c1 = tolower ((int) *String1); in AcpiUtStricmp() 263 c2 = tolower ((int) *String2); in AcpiUtStricmp()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | cctype | 31 int tolower(int c); 102 #ifdef tolower 103 # undef tolower 122 using ::tolower _LIBCPP_USING_IF_EXISTS;
|
/freebsd/usr.bin/from/ |
H A D | from.c | 72 *p = tolower(*p); in main() 142 ch = tolower(ch); in match() 148 ch = tolower(*t); in match()
|
/freebsd/contrib/mandoc/ |
H A D | compat_strcasestr.c | 53 c = tolower((unsigned char)c); in strcasestr() 59 } while ((char)tolower((unsigned char)sc) != c); in strcasestr()
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | T.builtin | 28 $awk '{ printf("%s|%s|%s\n", tolower($0), toupper($0), $0)}' >foo1 30 diff foo1 foo2 || echo 'BAD: T.builtin (toupper/tolower)' 35 $awk '{ printf("%s|%s|%s\n", tolower($0), toupper($0), $0)}') >foo1 37 diff foo1 foo2 || echo 'BAD: T.builtin (toupper/tolower) for utf-8'
|
/freebsd/usr.bin/getaddrinfo/ |
H A D | tables.awk | 53 printf("\t[AF_%s] = \"%s\",\n", afs[i], tolower(afs[i])); 59 tolower(socktypes[i]));
|
/freebsd/lib/libutil/ |
H A D | expand_number.c | 56 switch (tolower((unsigned char)*endptr)) { in expand_number() 92 if (shift != 0 && tolower((unsigned char)*endptr) == 'b') in expand_number()
|
/freebsd/contrib/ncurses/progs/ |
H A D | transform.c | 55 if (tolower(UChar(a[n])) != tolower(UChar(ignore[n - first]))) { in trim_suffix()
|
/freebsd/lib/libcam/ |
H A D | scsi_cmdparse.c | 290 if (tolower(*fmt) == 'v') { in do_buff_decode() 425 } else if (tolower(*p) == 'v') { in next_field() 430 } else if (tolower(*p) == 'i') { in next_field() 444 } else if (tolower(*p) == 't') { in next_field() 459 } else if (tolower(*p) == 's') { in next_field() 463 if (tolower(*p) == 'v') { in next_field()
|
/freebsd/usr.sbin/fwget/pci/ |
H A D | pci_network_mediatek |
|
/freebsd/lib/libkiconv/ |
H A D | xlat16_iconv.c | 253 if (lcase & KICONV_LOWER && ud != tolower(ud)) { in kiconv_xlat16_open() 254 table[us] |= (u_char)tolower(ud) << 16; in kiconv_xlat16_open() 271 if (lcase & KICONV_FROM_LOWER && c != tolower(c)) { in kiconv_xlat16_open() 272 table[us] |= (u_char)tolower(c) << 16; in kiconv_xlat16_open()
|
/freebsd/cddl/usr.sbin/dtrace/tests/common/funcs/ |
H A D | Makefile | 14 err.D_PROTO_ARG.tolower.d \ 32 err.D_PROTO_LEN.tolower.d \ 103 tst.tolower.d \
|