Home
last modified time | relevance | path

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

123

/haiku/src/system/libroot/posix/string/
H A Dstrcasecmp.c47 while (tolower(*us1) == tolower(*us2++)) { in strcasecmp()
52 return tolower(*us1) - tolower(*--us2); in strcasecmp()
64 if (tolower(*us1) != tolower(*us2++)) in strncasecmp()
65 return tolower(*us1) - tolower(*--us2); in strncasecmp()
H A Dstrcasestr.c56 c = tolower((unsigned char)c); in strcasestr()
62 } while ((char)tolower((unsigned char)sc) != c); in strcasestr()
H A Dstrlwr.c14 *c = tolower(*c); in strlwr()
/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dstring_utils.c115 strchr(hex, tolower(p[3])) && in unentitify_string()
116 strchr(hex, tolower(p[4]))) { in unentitify_string()
118 char c = (strchr(hex, tolower(p[3])) - hex) << 4 | in unentitify_string()
119 (strchr(hex, tolower(p[4])) - hex); in unentitify_string()
/haiku/src/add-ons/kernel/bus_managers/acpi/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()
H A Dutclib.c855 if (tolower (*(++String)) == 'x') in strtoul()
890 tolower (*(++String)) == 'x') in strtoul()
1010 tolower ( in tolower() function
H A Dutstrsuppt.c469 (tolower ((int) *(*String + 1)) == 'x')) in AcpiUtRemoveHexPrefix()
/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.h114 extern int tolower (int __c) __THROW;
173 tolower (int __c) __THROW in tolower() function
186 # define tolower(c) __tobody (c, tolower, (*__ctype_tolower_loc()), (c)) macro
/haiku/src/kits/locale/
H A DLocaleRoster.cpp76 switch ((tolower(language.Code()[0]) << 8) | tolower(language.Code()[1])) { in country_code_for_language()
375 normalizedCode[5] = tolower(countryCode[codeLength - 2]); in GetFlagIconForCountry()
376 normalizedCode[6] = tolower(countryCode[codeLength - 1]); in GetFlagIconForCountry()
410 normalizedCode[0] = tolower(languageCode[0]); in GetFlagIconForLanguage()
411 normalizedCode[1] = tolower(languageCode[1]); in GetFlagIconForLanguage()
/haiku/src/system/libroot/posix/locale/
H A Dctype.cpp25 #undef tolower
180 tolower(int c) in tolower() function
H A Dwctype.cpp135 return tolower(wc); in towlower()
170 return tolower(wc); in towctrans()
H A Dwctype_l.cpp132 return tolower(wc); in towlower_l()
169 return tolower(wc); in towctrans_l()
/haiku/src/add-ons/kernel/file_systems/fat/bsd/libkern/
H A Diconv.c121 int (*tocase)(int ch) = (casetype == KICONV_FROM_LOWER) ? tolower : toupper; in iconv_convchr_case()
144 **outbuf = tolower(**outbuf); in iconv_convchr_case()
/haiku/src/bin/
H A Dcomm.c223 *p++ = tolower((unsigned char)*s1); in stricoll()
226 *p++ = tolower((unsigned char)*s2); in stricoll()
/haiku/src/libs/libtelnet/
H A Dgenget.c45 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
/haiku/src/tests/system/libroot/posix/
H A Dtruncate.cpp43 if (fgets(yes, sizeof(yes), stdin) == NULL || tolower(yes[0]) != 'y') in main()
/haiku/src/kits/shared/
H A DStringForSize.cpp69 switch (tolower(*end)) { in parse_size()
/haiku/src/apps/mail/
H A DWords.cpp477 c1 = tolower(*s1); in word_match()
478 c2 = tolower(*s2); in word_match()
482 a = (tolower(s1[1]) == c2); in word_match()
483 b = (tolower(s2[1]) == c1); in word_match()
/haiku/src/kits/tracker/
H A DTrackerString.h121 return caseSensitivity ? c : (char)tolower(c); in ConditionalToLower()
/haiku/src/system/libnetwork/netresolv/net/
H A Dnslexer.l85 p[i] = tolower((unsigned char)p[i]);
/haiku/src/add-ons/kernel/debugger/hangman/
H A Dhangman.c157 bigbuffer[i] = tolower(bigbuffer[i]); in init_words()
202 p[i] = tolower(p[i]); in init_words_from_threadnames()
274 try = tolower(str[0]); in play_hangman()
/haiku/src/kits/storage/
H A Dstorage_support.cpp421 result += tolower(str[i]); in to_lower()
432 result[i] = tolower(str[i]); in to_lower()
/haiku/src/system/libnetwork/netresolv/nameser/
H A Dns_ttl.c98 *p = tolower(ch); in ns_format_ttl()
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacclib.h301 tolower (

123