| /freebsd-11-stable/contrib/llvm-project/libcxx/include/ |
| HD | __string | 92 int compare(const char_type* __s1, const char_type* __s2, size_t __n); 98 char_type* move(char_type* __s1, const char_type* __s2, size_t __n); 101 char_type* copy(char_type* __s1, const char_type* __s2, size_t __n); 120 char_traits<_CharT>::compare(const char_type* __s1, const char_type* __s2, size_t __n) 122 for (; __n; --__n, ++__s1, ++__s2) 124 if (lt(*__s1, *__s2)) 126 if (lt(*__s2, *__s1)) 159 char_traits<_CharT>::move(char_type* __s1, const char_type* __s2, size_t __n) 161 if (__n == 0) return __s1; 162 char_type* __r = __s1; [all …]
|
| HD | string.h | 80 char* __libcpp_strpbrk(const char* __s1, const char* __s2) {return (char*)strpbrk(__s1, __s2);} in __libcpp_strpbrk() argument 82 const char* strpbrk(const char* __s1, const char* __s2) {return __libcpp_strpbrk(__s1, __s2);} in strpbrk() argument 84 char* strpbrk( char* __s1, const char* __s2) {return __libcpp_strpbrk(__s1, __s2);} in strpbrk() argument 101 char* __libcpp_strstr(const char* __s1, const char* __s2) {return (char*)strstr(__s1, __s2);} in __libcpp_strstr() argument 103 const char* strstr(const char* __s1, const char* __s2) {return __libcpp_strstr(__s1, __s2);} in strstr() argument 105 char* strstr( char* __s1, const char* __s2) {return __libcpp_strstr(__s1, __s2);} in strstr() argument
|
| HD | wchar.h | 143 wchar_t* __libcpp_wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcspbrk(__s1,… in __libcpp_wcspbrk() argument 145 const wchar_t* wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcspbrk(__s1, __s… in wcspbrk() argument 147 … wchar_t* wcspbrk( wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcspbrk(__s1, __s2);} in wcspbrk() argument 157 wchar_t* __libcpp_wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return (wchar_t*)wcsstr(__s1, _… in __libcpp_wcsstr() argument 159 const wchar_t* wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcsstr(__s1, __s2)… in wcsstr() argument 161 … wchar_t* wcsstr( wchar_t* __s1, const wchar_t* __s2) {return __libcpp_wcsstr(__s1, __s2);} in wcsstr() argument
|
| HD | regex | 1523 explicit __owns_two_states(__node<_CharT>* __s1, base* __s2) 1524 : base(__s1), __second_(__s2) {} 1560 __node<_CharT>* __s1, __owns_one_state<_CharT>* __s2, 1565 : base(__s1, __s2), __min_(__min), __max_(__max), __loop_id_(__loop_id), 1658 explicit __alternate(__owns_one_state<_CharT>* __s1, 1660 : base(__s1, __s2) {}
|
| /freebsd-11-stable/contrib/libstdc++/include/bits/ |
| D | char_traits.h | 108 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) in compare() argument 152 if (lt(__s1[__i], __s2[__i])) in compare() 154 else if (lt(__s2[__i], __s1[__i])) in compare() 184 move(char_type* __s1, const char_type* __s2, std::size_t __n) in move() argument 186 return static_cast<_CharT*>(std::memmove(__s1, __s2, in move() 193 copy(char_type* __s1, const char_type* __s2, std::size_t __n) in copy() argument 195 std::copy(__s2, __s2 + __n, __s1); in copy() [all …]
|
| D | valarray_array.h | 306 __valarray_copy(const _Tp* __restrict__ __src, size_t __n, size_t __s1, 310 __dst[__i * __s2] = __src[__i * __s1]; 481 __valarray_copy(_Array<_Tp> __a, size_t __n, size_t __s1, 483 { std::__valarray_copy(__a._M_data, __n, __s1, __b._M_data, __s2); }
|
| D | locale_classes.h | 260 operator()(const basic_string<_Char, _Traits, _Alloc>& __s1, in _GLIBCXX_BEGIN_NAMESPACE()
|
| D | locale_facets.tcc | 68 locale::operator()(const basic_string<_CharT, _Traits, _Alloc>& __s1, in operator ()() argument 73 return (__collate.compare(__s1.data(), __s1.data() + __s1.length(), in operator ()()
|
| /freebsd-11-stable/contrib/libstdc++/include/c_std/ |
| D | std_cstring.h | 107 strchr(char* __s1, int __n) in strchr() argument 108 { return __builtin_strchr(const_cast<const char*>(__s1), __n); } in strchr() 113 strpbrk(char* __s1, const char* __s2) in strpbrk() argument 114 { return __builtin_strpbrk(const_cast<const char*>(__s1), __s2); } in strpbrk() 119 strrchr(char* __s1, int __n) in strrchr() argument 120 { return __builtin_strrchr(const_cast<const char*>(__s1), __n); } in strrchr() 125 strstr(char* __s1, const char* __s2) in strstr() argument 126 { return __builtin_strstr(const_cast<const char*>(__s1), __s2); } in strstr()
|
| D | std_cwchar.h | 217 wcspbrk(wchar_t* __s1, const wchar_t* __s2) in wcspbrk() argument 218 { return wcspbrk(const_cast<const wchar_t*>(__s1), __s2); } in wcspbrk() 229 wcsstr(wchar_t* __s1, const wchar_t* __s2) in wcsstr() argument 230 { return wcsstr(const_cast<const wchar_t*>(__s1), __s2); } in wcsstr()
|
| /freebsd-11-stable/contrib/libstdc++/include/ext/ |
| D | pod_char_traits.h | 114 compare(const char_type* __s1, const char_type* __s2, size_t __n) 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) 143 return static_cast<char_type*>(std::memmove(__s1, __s2, 148 copy(char_type* __s1, const char_type* __s2, size_t __n) 150 std::copy(__s2, __s2 + __n, __s1); 151 return __s1;
|
| /freebsd-11-stable/contrib/libstdc++/config/io/ |
| D | basic_file_stdio.cc | 141 xwritev(int __fd, const char* __s1, std::streamsize __n1, in xwritev() argument 153 __iov[0].iov_base = const_cast<char*>(__s1); in xwritev() 173 __s1 += __ret; in xwritev() 302 __basic_file<char>::xsputn_2(const char* __s1, streamsize __n1, in xsputn_2() argument 307 __ret = xwritev(this->fd(), __s1, __n1, __s2, __n2); in xsputn_2() 310 __ret = xwrite(this->fd(), __s1, __n1); in xsputn_2()
|
| D | basic_file_stdio.h | 94 xsputn_2(const char* __s1, streamsize __n1,
|
| /freebsd-11-stable/contrib/libstdc++/include/tr1/ |
| D | random.tcc | 645 template<class _UniformRandomNumberGenerator1, int __s1, 648 xor_combine<_UniformRandomNumberGenerator1, __s1, 656 __detail::_Shift<result_type, __w - __s1>::__value - 1); in _M_initialize_max() 663 if (__s1 < __s2) in _M_initialize_max() 664 _M_max = _M_initialize_max_aux(__m2, __m1, __s2 - __s1) << __s1; in _M_initialize_max() 666 _M_max = _M_initialize_max_aux(__m1, __m2, __s1 - __s2) << __s2; in _M_initialize_max() 669 template<class _UniformRandomNumberGenerator1, int __s1, 671 typename xor_combine<_UniformRandomNumberGenerator1, __s1, 673 xor_combine<_UniformRandomNumberGenerator1, __s1, 707 template<class _UniformRandomNumberGenerator1, int __s1, [all …]
|
| D | random | 588 _UIntType1 __a1, int __u1, int __s1, _UIntType1 __b1, int __t1, 594 __a1, __u1, __s1, __b1, __t1, __c1, __l1>& __x); 607 _UIntType1 __a1, int __u1, int __s1, _UIntType1 __b1, int __t1, 613 __a1, __u1, __s1, __b1, __t1, __c1, __l1>& __x); 791 template<typename _IntType1, _IntType1 __m1, int __s1, int __r1, 795 const subtract_with_carry<_IntType1, __m1, __s1, 808 template<typename _IntType1, _IntType1 __m1, int __s1, int __r1, 812 subtract_with_carry<_IntType1, __m1, __s1, __r1>& __x); 974 template<typename _RealType1, int __w1, int __s1, int __r1, 978 const subtract_with_carry_01<_RealType1, __w1, __s1, [all …]
|
| /freebsd-11-stable/crypto/openssl/crypto/camellia/asm/ |
| HD | cmll-x86.pl | 56 $__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/ |
| HD | mmintrin.h | 1326 _mm_set_pi16(short __s3, short __s2, short __s1, short __s0) in _mm_set_pi16() argument 1328 return (__m64)__builtin_ia32_vec_init_v4hi(__s0, __s1, __s2, __s3); in _mm_set_pi16()
|
| /freebsd-11-stable/crypto/openssl/crypto/aes/asm/ |
| HD | aes-586.pl | 210 $__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); }
|