Searched refs:__s1 (Results 1 – 6 of 6) sorted by relevance
/external/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 171 return (__n == 0 ? __s1 : in copy() 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() [all …]
|
/external/bluetooth/glib/glib/ |
D | gtestutils.h | 36 #define g_assert_cmpstr(s1, cmp, s2) do { const char *__s1 = (s1), *__s2 = (s2); \ 37 if (g_strcmp0 (__s1, __s2) cmp 0) ; else \ 39 … #s1 " " #cmp " " #s2, __s1, #cmp, __s2); } while (0)
|
/external/elfutils/ |
D | config-compat-freebsd.h | 60 static inline wchar_t *wmempcpy (wchar_t *__restrict __s1, __const wchar_t *__restrict __s2, size_t… in wmempcpy() argument
|
D | config-compat-darwin.h | 57 static inline wchar_t *wmempcpy (wchar_t *__restrict __s1, __const wchar_t *__restrict __s2, size_t… in wmempcpy() argument
|
/external/openssl/crypto/aes/asm/ |
D | aes-586.pl | 209 $__s1=&DWP(8,"esp"); # s1 backing store 461 if ($i==3) { $tmp=$s[3]; &mov ($s[2],$__s1); }##%ecx 790 if ($i==3) { $tmp=$s[3]; &mov ($s[2],$__s1); }##%ecx 828 if ($i==3) { $tmp=$s[3]; &mov ($s[2],$__s1); }##%ecx 1254 if ($i==3) { $tmp=$s[3]; &$Fn ($s[2],$__s1); } 1317 &mov ($s[1],$__s1) if($i==3); #prefetch $s1 1607 if ($i==3) { $tmp=$s[3]; &mov ($s[2],$__s1); } 1650 if ($i==3) { $tmp=$s[3]; &mov ($s[2],$__s1); }
|
/external/tcpdump/ |
D | tcpdump.c | 53 extern int strcasecmp (const char *__s1, const char *__s2);
|