Home
last modified time | relevance | path

Searched refs:tolower (Results 1 – 25 of 301) sorted by relevance

12345678910>>...13

/freebsd/stand/libsa/
H A Dstrcasecmp.c40 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 Dstrcasecmp.c45 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 Dfnmatch.c145 (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 Dstrcasestr.c54 c = tolower((unsigned char)c); in strcasestr()
60 } while ((char)tolower((unsigned char)sc) != c); in strcasestr()
/freebsd/contrib/file/src/
H A Dstrcasestr.c54 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 Ddname.c119 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()
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()
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()
531 if(*d1 != *d2 && tolower((unsigned char)*d1) in dname_lab_cmp()
532 != tolower((unsigned char)*d2)) { in dname_lab_cmp()
533 if(tolower((unsigned char)*d1) < in dname_lab_cmp()
534 tolower((unsigned char)*d2)) { in dname_lab_cmp()
[all …]
/freebsd/crypto/openssh/openbsd-compat/
H A Dfnmatch.c231 (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 Dstrcasestr.c55 c = (char)tolower((unsigned char)c); in strcasestr()
61 } while ((char)tolower((unsigned char)sc) != c); in strcasestr()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DOptEmitter.cpp24 char a = tolower(*A), b = tolower(*B); in StrCmpOptionName()
29 a = tolower(*++X); in StrCmpOptionName()
30 b = tolower(*++Y); in StrCmpOptionName()
/freebsd/crypto/heimdal/appl/telnet/libtelnet/
H A Dgenget.c44 #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 Dctype.c83 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 Dutnonansi.c195 *String = (char) tolower ((int) *String); in AcpiUtStrlwr()
262 c1 = tolower ((int) *String1); in AcpiUtStricmp()
263 c2 = tolower ((int) *String2); in AcpiUtStricmp()
/freebsd/usr.bin/from/
H A Dfrom.c72 *p = tolower(*p); in main()
142 ch = tolower(ch); in match()
148 ch = tolower(*t); in match()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcctype31 int tolower(int c);
103 #ifdef tolower
104 # undef tolower
123 using ::tolower _LIBCPP_USING_IF_EXISTS;
/freebsd/contrib/mandoc/
H A Dcompat_strcasestr.c53 c = tolower((unsigned char)c); in strcasestr()
59 } while ((char)tolower((unsigned char)sc) != c); in strcasestr()
/freebsd/usr.bin/getaddrinfo/
H A Dtables.awk53 printf("\t[AF_%s] = \"%s\",\n", afs[i], tolower(afs[i]));
59 tolower(socktypes[i]));
/freebsd/contrib/one-true-awk/testdir/
H A DT.builtin28 $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/lib/libutil/
H A Dexpand_number.c56 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 Dtransform.c55 if (tolower(UChar(a[n])) != tolower(UChar(ignore[n - first]))) { in trim_suffix()
/freebsd/lib/libcam/
H A Dscsi_cmdparse.c290 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/lib/libkiconv/
H A Dxlat16_iconv.c253 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 DMakefile14 err.D_PROTO_ARG.tolower.d \
32 err.D_PROTO_LEN.tolower.d \
103 tst.tolower.d \
/freebsd/include/
H A Dctype.h59 int tolower(int);
98 #define tolower(c) __sbtolower(c) macro
/freebsd/lib/libc/locale/
H A Disctype.c189 #undef tolower
191 tolower(int c) in tolower() function
/freebsd/contrib/llvm-project/libcxx/src/
H A Dtz.cpp67 if (std::tolower(__input.get()) != __expected) in __matches()
73 if (std::tolower(__input.get()) != __c) in __matches()

12345678910>>...13