Searched refs:__s1 (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/libcxx/include/
H A Dstring.h80 char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);} argument
82 const char* strpbrk(const char* __s1, const char* __s2) {return __libcpp_strpbrk(__s1, __s2);} argument
84 char* strpbrk( char* __s1, const char* __s2) {return __libcpp_strpbrk(__s1, __s2);} argument
101 char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);} argument
103 const char* strstr(const char* __s1, const char* __s2) {return __libcpp_strstr(__s1, __s argument
105 strstr( char* __s1, const char* __s2) argument
[all...]
H A Dwchar.h143 wchar_t* __libcpp_wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcspbrk(__s1, __s2);} argument
145 const wchar_t* wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcspbrk(__s1, __s2);} argument
147 wchar_t* wcspbrk( wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcspbrk(__s1, __s2);} argument
157 wchar_t* __libcpp_wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcsstr(__s1, __s2);} argument
159 const wchar_t* wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcsstr(__s1, __s argument
161 wcsstr( wchar_t* __s1, const wchar_t* __s2) argument
[all...]
/freebsd-11-stable/contrib/libstdc++/include/c_std/
H A Dstd_cstring.h107 strchr(char* __s1, int __n) argument
108 { return __builtin_strchr(const_cast<const char*>(__s1), __n); }
113 strpbrk(char* __s1, const char* __s2) argument
114 { return __builtin_strpbrk(const_cast<const char*>(__s1), __s2); }
119 strrchr(char* __s1, int __n) argument
120 { return __builtin_strrchr(const_cast<const char*>(__s1), __n); }
125 strstr(char* __s1, const char* __s2) argument
126 { return __builtin_strstr(const_cast<const char*>(__s1), __s2); }
H A Dstd_cwchar.h217 wcspbrk(wchar_t* __s1, const wchar_t* __s2) argument
218 { return wcspbrk(const_cast<const wchar_t*>(__s1), __s2); }
229 wcsstr(wchar_t* __s1, const wchar_t* __s2) argument
230 { return wcsstr(const_cast<const wchar_t*>(__s1), __s2); }
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dchar_traits.h108 compare(const char_type* __s1, const char_type* __s2, std::size_t __n);
117 move(char_type* __s1, const char_type* __s2, std::size_t __n);
120 copy(char_type* __s1, const char_type* __s2, std::size_t __n);
149 compare(const char_type* __s1, const char_type* __s2, std::size_t __n) argument
152 if (lt(__s1[__i], __s2[__i]))
154 else if (lt(__s2[__i], __s1[__i]))
184 move(char_type* __s1, const char_type* __s2, std::size_t __n) argument
186 return static_cast<_CharT*>(std::memmove(__s1, __s2,
193 copy(char_type* __s1, const char_type* __s2, std::size_t __n) argument
195 std::copy(__s2, __s2 + __n, __s1);
253 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
265 move(char_type* __s1, const char_type* __s2, size_t __n) argument
269 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
323 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
335 move(char_type* __s1, const char_type* __s2, size_t __n) argument
339 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
[all...]
H A Dlocale_classes.h260 operator()(const basic_string<_Char, _Traits, _Alloc>& __s1,
H A Dvalarray_array.h302 // Copy strided array __src[<__n : __s1>] into another
306 __valarray_copy(const _Tp* __restrict__ __src, size_t __n, size_t __s1, argument
310 __dst[__i * __s2] = __src[__i * __s1];
477 // Copy strided array __src[<__n : __s1>] into another
481 __valarray_copy(_Array<_Tp> __a, size_t __n, size_t __s1, argument
483 { std::__valarray_copy(__a._M_data, __n, __s1, __b._M_data, __s2); }
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dpod_char_traits.h114 compare(const char_type* __s1, const char_type* __s2, size_t __n) argument
117 if (!eq(__s1[__i], __s2[__i]))
118 return lt(__s1[__i], __s2[__i]) ? -1 : 1;
141 move(char_type* __s1, const char_type* __s2, size_t __n) argument
143 return static_cast<char_type*>(std::memmove(__s1, __s2,
148 copy(char_type* __s1, const char_type* __s2, size_t __n) argument
150 std::copy(__s2, __s2 + __n, __s1);
151 return __s1;
/freebsd-11-stable/contrib/libstdc++/config/io/
H A Dbasic_file_stdio.h94 xsputn_2(const char* __s1, streamsize __n1,
H A Dbasic_file_stdio.cc141 xwritev(int __fd, const char* __s1, std::streamsize __n1, argument
153 __iov[0].iov_base = const_cast<char*>(__s1);
173 __s1 += __ret;
302 __basic_file<char>::xsputn_2(const char* __s1, streamsize __n1, argument
307 __ret = xwritev(this->fd(), __s1, __n1, __s2, __n2);
310 __ret = xwrite(this->fd(), __s1, __n1);
/freebsd-11-stable/crypto/openssl/crypto/camellia/asm/
H A Dcmll-x86.pl56 $__s1=&DWP(8,"esp"); # s1 backing store
246 &mov ($__s1,@T[1]);
264 &mov ($__s1,@T[1]); # s1^=LeftRotate(s0&key[0],1);
421 &mov ($__s1,@T[1]);
439 &mov ($__s1,@T[1]); # s1^=LeftRotate(s0&key[0],1);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A Dmmintrin.h1320 /// \param __s1
1326 _mm_set_pi16(short __s3, short __s2, short __s1, short __s0) argument
1328 return (__m64)__builtin_ia32_vec_init_v4hi(__s0, __s1, __s2, __s3);
/freebsd-11-stable/crypto/openssl/crypto/aes/asm/
H A Daes-586.pl210 $__s1=&DWP(8,"esp"); # s1 backing store
462 if ($i==3) { $tmp=$s[3]; &mov ($s[2],$__s1); }##%ecx
795 if ($i==3) { $tmp=$s[3]; &mov ($s[2],$__s1); }##%ecx
833 if ($i==3) { $tmp=$s[3]; &mov ($s[2],$__s1); }##%ecx
1259 if ($i==3) { $tmp=$s[3]; &$Fn ($s[2],$__s1); }
1322 &mov ($s[1],$__s1) if($i==3); #prefetch $s1
1614 if ($i==3) { $tmp=$s[3]; &mov ($s[2],$__s1); }
1657 if ($i==3) { $tmp=$s[3]; &mov ($s[2],$__s1); }

Completed in 193 milliseconds