/haiku/src/system/libroot/posix/string/ |
H A D | strcasecmp.c | 47 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 D | strcasestr.c | 56 c = tolower((unsigned char)c); in strcasestr() 62 } while ((char)tolower((unsigned char)sc) != c); in strcasestr()
|
H A D | strlwr.c | 14 *c = tolower(*c); in strlwr()
|
/haiku/src/add-ons/kernel/file_systems/websearchfs/ |
H A D | string_utils.c | 115 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 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()
|
H A D | utclib.c | 855 if (tolower (*(++String)) == 'x') in strtoul() 890 tolower (*(++String)) == 'x') in strtoul() 1010 tolower ( in tolower() function
|
H A D | utstrsuppt.c | 469 (tolower ((int) *(*String + 1)) == 'x')) in AcpiUtRemoveHexPrefix()
|
/haiku/headers/posix/ |
H A D | ctype.h | 30 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 D | ctype.h | 114 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 D | LocaleRoster.cpp | 76 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 D | ctype.cpp | 25 #undef tolower 180 tolower(int c) in tolower() function
|
H A D | wctype.cpp | 135 return tolower(wc); in towlower() 170 return tolower(wc); in towctrans()
|
H A D | wctype_l.cpp | 132 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 D | iconv.c | 121 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 D | comm.c | 223 *p++ = tolower((unsigned char)*s1); in stricoll() 226 *p++ = tolower((unsigned char)*s2); in stricoll()
|
/haiku/src/libs/libtelnet/ |
H A D | genget.c | 45 #define LOWER(x) (isupper(x) ? tolower(x) : (x))
|
/haiku/src/tests/system/libroot/posix/ |
H A D | truncate.cpp | 43 if (fgets(yes, sizeof(yes), stdin) == NULL || tolower(yes[0]) != 'y') in main()
|
/haiku/src/kits/shared/ |
H A D | StringForSize.cpp | 69 switch (tolower(*end)) { in parse_size()
|
/haiku/src/apps/mail/ |
H A D | Words.cpp | 477 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 D | TrackerString.h | 121 return caseSensitivity ? c : (char)tolower(c); in ConditionalToLower()
|
/haiku/src/system/libnetwork/netresolv/net/ |
H A D | nslexer.l | 85 p[i] = tolower((unsigned char)p[i]);
|
/haiku/src/add-ons/kernel/debugger/hangman/ |
H A D | hangman.c | 157 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 D | storage_support.cpp | 421 result += tolower(str[i]); in to_lower() 432 result[i] = tolower(str[i]); in to_lower()
|
/haiku/src/system/libnetwork/netresolv/nameser/ |
H A D | ns_ttl.c | 98 *p = tolower(ch); in ns_format_ttl()
|
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/ |
H A D | acclib.h | 301 tolower (
|