Home
last modified time | relevance | path

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

12345678910>>...13

/third_party/python/Python/
Dpystrcmp.c14 for (; (--size > 0) && *p1 && *p2 && (tolower(*p1) == tolower(*p2)); in PyOS_mystrnicmp()
18 return tolower(*p1) - tolower(*p2); in PyOS_mystrnicmp()
26 for (; *p1 && *p2 && (tolower(*p1) == tolower(*p2)); p1++, p2++) { in PyOS_mystricmp()
29 return (tolower(*p1) - tolower(*p2)); in PyOS_mystricmp()
/third_party/musl/porting/liteos_m/kernel/src/string/
Dstrncasecmp.c8 for (; *l && *r && n && (*l == *r || tolower(*l) == tolower(*r)); l++, r++, n--); in strncasecmp()
9 return tolower(*l) - tolower(*r); in strncasecmp()
Dstrcasecmp.c7 for (; *l && *r && (*l == *r || tolower(*l) == tolower(*r)); l++, r++); in strcasecmp()
8 return tolower(*l) - tolower(*r); in strcasecmp()
/third_party/musl/src/string/
Dstrcasecmp.c7 for (; *l && *r && (*l == *r || tolower(*l) == tolower(*r)); l++, r++); in strcasecmp()
8 return tolower(*l) - tolower(*r); in strcasecmp()
Dstrncasecmp.c8 for (; *l && *r && n && (*l == *r || tolower(*l) == tolower(*r)); l++, r++, n--); in strncasecmp()
9 return tolower(*l) - tolower(*r); in strncasecmp()
/third_party/musl/porting/liteos_a/kernel/src/string/
Dstrcasecmp.c7 for (; *l && *r && (*l == *r || tolower(*l) == tolower(*r)); l++, r++); in strcasecmp()
8 return tolower(*l) - tolower(*r); in strcasecmp()
Dstrncasecmp.c8 for (; *l && *r && n && (*l == *r || tolower(*l) == tolower(*r)); l++, r++, n--); in strncasecmp()
9 return tolower(*l) - tolower(*r); in strncasecmp()
/third_party/node/deps/cares/src/lib/
Dares_strcasecmp.c32 int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i]; in ares_strcasecmp()
33 int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i]; in ares_strcasecmp()
55 int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i]; in ares_strncasecmp()
56 int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i]; in ares_strncasecmp()
/third_party/cares/
Dares_strcasecmp.c32 int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i]; in ares_strcasecmp()
33 int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i]; in ares_strcasecmp()
55 int c1 = ISUPPER(a[i]) ? tolower(a[i]) : a[i]; in ares_strncasecmp()
56 int c2 = ISUPPER(b[i]) ? tolower(b[i]) : b[i]; in ares_strncasecmp()
/third_party/boost/tools/bcp/
Dpath_operations.cpp17 using ::tolower;
35 int r = std::tolower(*i) - std::tolower(*k); in compare_paths()
/third_party/boost/libs/iostreams/example/
Ddictionary_filter.hpp27 using ::tolower;
39 void tolower(std::string& str);
194 tolower(key); in add()
202 tolower(copy); in replace()
213 inline void dictionary::tolower(std::string& str) in tolower() function in boost::iostreams::example::dictionary
216 str[z] = std::tolower((unsigned char) str[z]); in tolower()
/third_party/uboot/u-boot-2020.01/lib/
Dstrto.c21 if (tolower(s[1]) == 'x' && isxdigit(s[2])) in _parse_integer_fixup_radix()
28 if (*base == 16 && s[0] == '0' && tolower(s[1]) == 'x') in _parse_integer_fixup_radix()
88 switch (tolower(**endp)) { in ustrtoul()
109 switch (tolower(**endp)) { in ustrtoull()
/third_party/musl/porting/liteos_a/kernel/src/ctype/
Dtolower.c3 int tolower(int c) in tolower() function
11 return tolower(c); in __tolower_l()
/third_party/musl/src/ctype/
Dtolower.c3 int tolower(int c) in tolower() function
11 return tolower(c); in __tolower_l()
/third_party/musl/porting/liteos_m/kernel/src/ctype/
Dtolower.c3 int tolower(int c) in tolower() function
11 return tolower(c); in __tolower_l()
/third_party/boost/libs/iostreams/test/detail/
Dtemp_file.hpp21 # undef tolower
25 using ::toupper; using ::tolower; using ::remove; using ::rand;
84 f.put((char) std::tolower(buf[w])); in lowercase_file()
Dfilters.hpp28 namespace std { using ::toupper; using ::tolower; }
53 s, (char) std::tolower((unsigned char) c) in put()
79 char c = (char) std::tolower((unsigned char) buf[result]); in write()
/third_party/uboot/u-boot-2020.01/cmd/
Dini.c209 requested_section[i] = tolower(requested_section[i]); in ini_handler()
211 section[i] = tolower(section[i]); in ini_handler()
217 name[i] = tolower(name[i]); in ini_handler()
219 value[i] = tolower(value[i]); in ini_handler()
/third_party/libusb/libusb/
Dstrerror.c187 if (usbi_locale_supported[i][0] == tolower((unsigned char)locale[0]) in libusb_setlocale()
188 && usbi_locale_supported[i][1] == tolower((unsigned char)locale[1])) in libusb_setlocale()
/third_party/googletest/googletest/src/hwext/
Dgtest-utils.cc43 if (tolower(one[i]) != tolower(two[i])) { in compareStringsByIgnoreCase()
/third_party/boost/boost/xpressive/detail/core/
Dregex_impl.hpp45 virtual Char tolower(Char ch) const = 0;
85 char_type tolower(char_type ch) const in tolower() function
118 return this->traits_.tolower(ch); in tolower_()
/third_party/boost/libs/iostreams/test/
Dfilter_test.cpp66 std::tolower((unsigned char) c) : in get()
73 s, (char) std::tolower((unsigned char) c) in put()
/third_party/boost/boost/spirit/home/x3/support/
Dno_case.hpp50 ? Encoding::toupper(ch) : Encoding::tolower(ch)); in in_set()
60 ? Encoding::tolower(lc) - rc : Encoding::toupper(lc) - rc; in operator ()()
/third_party/boost/boost/spirit/home/qi/char/
Dchar.hpp164 : lo(static_cast<char_type>(char_encoding::tolower(ch))) in literal_char()
237 : from_lo(static_cast<char_type>(char_encoding::tolower(from))) in char_range()
238 , to_lo(static_cast<char_type>(char_encoding::tolower(to))) in char_range()
367 chset.set(static_cast<char_type>(CharEncoding::tolower(ch))); in char_set()
372 chset.set(static_cast<char_type>(CharEncoding::tolower(ch)) in char_set()
373 , static_cast<char_type>(CharEncoding::tolower(next))); in char_set()
379 chset.set(static_cast<char_type>(CharEncoding::tolower(ch))); in char_set()
/third_party/boost/boost/spirit/home/support/char_encoding/
Dstandard.hpp145 tolower(int ch) in tolower() function
148 return std::tolower(ch); in tolower()

12345678910>>...13