Searched refs:tolower (Results 1 - 25 of 66) sorted by relevance

123

/haiku/src/system/libroot/posix/string/
H A Dstrlwr.c14 *c = tolower(*c);
H A Dstrcasecmp.c47 while (tolower(*us1) == tolower(*us2++)) {
52 return tolower(*us1) - tolower(*--us2);
64 if (tolower(*us1) != tolower(*us2++))
65 return tolower(*us1) - tolower(*--us2);
H A Dstrcasestr.c56 c = tolower((unsigned char)c);
62 } while ((char)tolower((unsigned char)sc) != c);
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/utilities/
H A Dutnonansi.c195 *String = (char) tolower ((int) *String);
262 c1 = tolower ((int) *String1);
263 c2 = tolower ((int) *String2);
H A Dutclib.c193 * FUNCTION: tolower
855 if (tolower (*(++String)) == 'x')
890 tolower (*(++String)) == 'x')
999 * FUNCTION: tolower
1010 tolower ( function
/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dstring_utils.c115 strchr(hex, tolower(p[3])) &&
116 strchr(hex, tolower(p[4]))) {
118 char c = (strchr(hex, tolower(p[3])) - hex) << 4 |
119 (strchr(hex, tolower(p[4])) - hex);
/haiku/headers/posix/
H A Dctype.h30 int tolower(int);
77 #define tolower(c) ((int)(*__ctype_tolower_loc())[(int)(c)]) macro
83 #define _tolower(c) tolower(c)
/haiku/src/system/libroot/posix/glibc/ctype/
H A Dctype.h77 rather than `unsigned char's because tolower (EOF) must be EOF, which
114 extern int tolower (int __c) __THROW;
130 /* These are the same as `toupper' and `tolower' except that they do not
173 tolower (int __c) __THROW
186 # define tolower(c) __tobody (c, tolower, (*__ctype_tolower_loc()), (c)) macro
/haiku/src/libs/libtelnet/
H A Dgenget.c45 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
/haiku/src/system/libroot/posix/locale/
H A Dctype.cpp25 #undef tolower macro
180 tolower(int c) function
H A Dwctype.cpp135 return tolower(wc);
170 return tolower(wc);
192 if (strcmp(charClass, "tolower") == 0)
H A Dwctype_l.cpp132 return tolower(wc);
169 return tolower(wc);
193 if (strcmp(charClass, "tolower") == 0)
/haiku/src/bin/
H A Dcomm.c223 *p++ = tolower((unsigned char)*s1);
226 *p++ = tolower((unsigned char)*s2);
/haiku/src/kits/tracker/
H A DTrackerString.h121 return caseSensitivity ? c : (char)tolower(c);
/haiku/src/tests/system/libroot/posix/
H A Dtruncate.cpp43 if (fgets(yes, sizeof(yes), stdin) == NULL || tolower(yes[0]) != 'y')
/haiku/src/kits/shared/
H A DStringForSize.cpp69 switch (tolower(*end)) {
/haiku/src/kits/locale/
H A DLocaleRoster.cpp76 switch ((tolower(language.Code()[0]) << 8) | tolower(language.Code()[1])) {
375 normalizedCode[5] = tolower(countryCode[codeLength - 2]);
376 normalizedCode[6] = tolower(countryCode[codeLength - 1]);
410 normalizedCode[0] = tolower(languageCode[0]);
411 normalizedCode[1] = tolower(languageCode[1]);
/haiku/src/system/libnetwork/netresolv/net/
H A Dnslexer.l85 p[i] = tolower((unsigned char)p[i]);
/haiku/src/system/libnetwork/netresolv/nameser/
H A Dns_ttl.c98 *p = tolower(ch);
/haiku/src/apps/mail/
H A DWords.cpp477 c1 = tolower(*s1);
478 c2 = tolower(*s2);
482 a = (tolower(s1[1]) == c2);
483 b = (tolower(s2[1]) == c1);
/haiku/src/kits/storage/
H A Dstorage_support.cpp421 result += tolower(str[i]);
432 result[i] = tolower(str[i]);
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dcdda.cpp157 char first = tolower(find[0]);
165 if (tolower(string[0]) != first)
275 string[0] = tolower(string[0]);
/haiku/src/add-ons/kernel/debugger/hangman/
H A Dhangman.c155 /* tolower */
157 bigbuffer[i] = tolower(bigbuffer[i]);
200 /* tolower */
202 p[i] = tolower(p[i]);
274 try = tolower(str[0]);
/haiku/src/tests/kits/net/
H A Dlink_echo.cpp95 buffer[i] = tolower(buffer[i]);
/haiku/src/tests/add-ons/kernel/file_systems/bfs/fragmenter/
H A Dfragmenter.cpp118 const char *digitPos = strchr(kHexDigits, tolower(c));

Completed in 226 milliseconds

123