Searched refs:__s2 (Results 1 – 1 of 1) sorted by relevance
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | char_traits.h | 146 static int _STLP_CALL compare(const char_type* __s1, const char_type* __s2, size_t __n) { in compare() argument 148 if (!eq(__s1[__i], __s2[__i])) in compare() 149 return __s1[__i] < __s2[__i] ? -1 : 1; in compare() 167 static char_type* _STLP_CALL move(char_type* __s1, const char_type* __s2, size_t _Sz) in move() argument 168 { return (_Sz == 0 ? __s1 : (char_type*)memmove(__s1, __s2, _Sz * sizeof(char_type))); } in move() 170 static char_type* _STLP_CALL copy(char_type* __s1, const char_type* __s2, size_t __n) { in copy() argument 172 (char_type*)memcpy(__s1, __s2, __n * sizeof(char_type))); in copy() 225 static int _STLP_CALL compare(const char* __s1, const char* __s2, size_t __n) in compare() argument 226 { return memcmp(__s1, __s2, __n); } in compare() 256 static int _STLP_CALL compare(const wchar_t* __s1, const wchar_t* __s2, size_t __n) in compare() argument [all …]
|