HomeSort by: relevance | last modified time | path
    Searched refs:tolower (Results 1 - 25 of 438) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/tests/usr.bin/awk/
d_tolower.awk 4 print tolower($0);
  /src/external/ibm-public/postfix/dist/src/util/
strcasecmp.c 49 while (tolower(*us1) == tolower(*us2++))
52 return (tolower(*us1) - tolower(*--us2));
62 if (tolower(*us1) != tolower(*us2++))
63 return (tolower(*us1) - tolower(*--us2));
  /src/sys/arch/hpc/stand/libsa/
stricmp.cpp 43 while (libsa::tolower(*s1) == libsa::tolower(*s2++))
47 return libsa::tolower(*s1) - libsa::tolower(*--s2);
libsa_string.h 37 char tolower(char);
tolower.cpp 1 /* $NetBSD: tolower.cpp,v 1.4 2011/09/23 16:00:15 nonaka Exp $ */
40 tolower(char c) function
  /src/external/bsd/am-utils/dist/libamu/
strcasecmp.c 57 while (tolower(*cp1) == tolower(*cp2++))
60 return (tolower(*cp1) - tolower(*--cp2));
  /src/external/bsd/file/dist/src/
strcasestr.c 56 if (tolower(*us1) != tolower(*us2++))
57 return tolower(*us1) - tolower(*--us2);
75 c = tolower((unsigned char)c);
81 } while ((char)tolower((unsigned char)sc) != c);
  /src/common/lib/libc/string/
strcasecmp.c 68 while (tolower(*us1) == tolower(*us2++))
71 return (tolower(*us1) - tolower(*--us2));
strncasecmp.c 71 if (tolower(*us1) != tolower(*us2++))
72 return (tolower(*us1) - tolower(*--us2));
  /src/external/bsd/openldap/dist/include/ac/
ctype.h 25 #undef TOLOWER
29 # define TOLOWER(c) (isupper(c) ? tolower(c) : (c))
32 # define TOLOWER(c) tolower(c)
  /src/external/gpl3/gdb/dist/gdb/dwarf2/
index-common.c 34 c = tolower (c);
48 /* Note: tolower here ignores UTF-8, which isn't fully compliant.
53 hash = hash * 33 + tolower (c);
62 /* Note: tolower here ignores UTF-8, which isn't fully compliant.
67 hash = hash * 33 + tolower (c & 0xff);
  /src/external/gpl3/gdb.old/dist/gdb/dwarf2/
index-common.c 34 c = tolower (c);
48 /* Note: tolower here ignores UTF-8, which isn't fully compliant.
53 hash = hash * 33 + tolower (c);
62 /* Note: tolower here ignores UTF-8, which isn't fully compliant.
67 hash = hash * 33 + tolower (c & 0xff);
  /src/external/bsd/mdocml/dist/
compat_strcasestr.c 53 c = tolower((unsigned char)c);
59 } while ((char)tolower((unsigned char)sc) != c);
  /src/lib/libc/string/
strcasestr.c 58 c = tolower((unsigned char)c);
64 } while ((char)tolower((unsigned char)sc) != c);
  /src/usr.bin/getaddrinfo/
tables.awk 55 printf("\t[AF_%s] = \"%s\",\n", afs[i], tolower(afs[i]));
61 tolower(socktypes[i]));
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
strlwr.c 49 *s = tolower((unsigned char)*s);
  /src/tests/lib/libc/locale/
t_toupper.c 83 reported = tolower((int)(unsigned char)t->upper[i]);
106 ATF_TC(tolower); variable
108 ATF_TC_HEAD(tolower, tc)
111 "Checks tolower under different locales");
114 ATF_TC_BODY(tolower, tc)
128 ATF_TP_ADD_TC(tp, tolower);
  /src/share/misc/
nanpa.awk 19 flocation[tolower(f[2])] = f[2];
21 fcountry[tolower(f[2])] = f[4];
37 } else if (tolower(s) in flocation) {
38 t = flocation[tolower(s)];
39 if (tolower(s) in fcountry) {
40 t = t " (" countrymap(fcountry[tolower(s)]) ")";
  /src/external/mpl/bind/dist/tests/isc/
ascii_test.c 146 uint64_t abc = tolower(a) << 8 | tolower(b);
152 assert_int_equal(tolower(a), isc_ascii_tolower(a));
153 assert_int_equal(tolower(a), isc__ascii_tolower1(a));
154 assert_int_equal(tolower(a), isc_ascii_tolower8(a));
155 assert_int_equal(tolower(b), isc_ascii_tolower(b));
156 assert_int_equal(tolower(b), isc__ascii_tolower1(b));
157 assert_int_equal(tolower(b), isc_ascii_tolower8(b));
  /src/external/apache2/llvm/dist/libcxx/include/
ctype.h 28 int tolower(int c);
54 #undef tolower macro
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
OptEmitter.cpp 24 char a = tolower(*A), b = tolower(*B);
29 a = tolower(*++X);
30 b = tolower(*++Y);
  /src/external/bsd/openldap/dist/contrib/ldapc++/src/
LDAPSchema.cpp 40 (*k) = tolower(*k);
60 (*k) = tolower(*k);
71 (*k) = tolower(*k);
80 (*k) = tolower(*k);
  /src/sys/external/bsd/acpica/dist/utilities/
utnonansi.c 87 *String = (char) tolower ((int) *String);
154 c1 = tolower ((int) *String1);
155 c2 = tolower ((int) *String2);
  /src/usr.bin/from/
from.c 79 *p = tolower((unsigned char)*p);
141 ch = tolower((unsigned char)ch);
147 ch = tolower((unsigned char)*t++);
  /src/sys/arch/hppa/dev/
devlist2h.awk 76 types[tolower($2)] = toupper($2);
81 if (tolower($1) in types) {

Completed in 44 milliseconds

1 2 3 4 5 6 7 8 91011>>