Searched refs:__s2 (Results 1 - 4 of 4) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
H A D | char_traits.h | 146 static int _STLP_CALL compare(const char_type* __s1, const char_type* __s2, size_t __n) { argument 148 if (!eq(__s1[__i], __s2[__i])) 149 return __s1[__i] < __s2[__i] ? -1 : 1; 167 static char_type* _STLP_CALL move(char_type* __s1, const char_type* __s2, size_t _Sz) argument 168 { return (_Sz == 0 ? __s1 : (char_type*)memmove(__s1, __s2, _Sz * sizeof(char_type))); } 170 static char_type* _STLP_CALL copy(char_type* __s1, const char_type* __s2, size_t __n) { argument 172 (char_type*)memcpy(__s1, __s2, __n * sizeof(char_type))); 225 static int _STLP_CALL compare(const char* __s1, const char* __s2, size_t __n) argument 226 { return memcmp(__s1, __s2, __n); } 256 static int _STLP_CALL compare(const wchar_t* __s1, const wchar_t* __s2, size_ argument [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/ibm/ |
H A D | xlocale.h | 243 int strcoll_l(const char *__s1, const char *__s2, locale_t locale) argument 245 return __xstrcoll(locale, __s1, __s2); 248 int wcscoll_l(const wchar_t *__s1, const wchar_t *__s2, locale_t locale) argument 250 return __xwcscoll(locale, __s1, __s2); 253 size_t strxfrm_l(char *__s1, const char *__s2, size_t __n, locale_t locale) argument 255 return __xstrxfrm(locale, __s1, __s2, __n);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/support/solaris/ |
H A D | xlocale.c | 81 int wcscoll_l(const wchar_t *__s1, const wchar_t *__s2, locale_t __l) { argument 84 __s1, __s2); 87 int strcoll_l(const char *__s1, const char *__s2, locale_t __l) { argument 90 __s1, __s2); 93 size_t strxfrm_l(char *__s1, const char *__s2, size_t __n, locale_t __l) { argument 96 __s1, __s2, __n);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/solaris/ |
H A D | xlocale.h | 101 int strcoll_l(const char *__s1, const char *__s2, locale_t __l); 102 int wcscoll_l(const wchar_t *__s1, const wchar_t *__s2, locale_t __l); 106 size_t strxfrm_l(char *__s1, const char *__s2, size_t __n, locale_t __l);
|
Completed in 129 milliseconds