Home
last modified time | relevance | path

Searched refs:__s1 (Results 1 – 25 of 30) sorted by relevance

12

/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
Dchar_traits.h108 compare(const char_type* __s1, const char_type* __s2, std::size_t __n); in _GLIBCXX_VISIBILITY()
117 move(char_type* __s1, const char_type* __s2, std::size_t __n); in _GLIBCXX_VISIBILITY()
120 copy(char_type* __s1, const char_type* __s2, std::size_t __n); in _GLIBCXX_VISIBILITY()
149 compare(const char_type* __s1, const char_type* __s2, std::size_t __n) in _GLIBCXX_VISIBILITY()
152 if (lt(__s1[__i], __s2[__i])) in _GLIBCXX_VISIBILITY()
154 else if (lt(__s2[__i], __s1[__i])) in _GLIBCXX_VISIBILITY()
184 move(char_type* __s1, const char_type* __s2, std::size_t __n) in _GLIBCXX_VISIBILITY()
187 return __s1; in _GLIBCXX_VISIBILITY()
188 return static_cast<_CharT*>(__builtin_memmove(__s1, __s2, in _GLIBCXX_VISIBILITY()
195 copy(char_type* __s1, const char_type* __s2, std::size_t __n) in _GLIBCXX_VISIBILITY()
[all …]
Dlocale_classes.tcc81 operator()(const basic_string<_CharT, _Traits, _Alloc>& __s1, in operator ()() argument
86 return (__collate.compare(__s1.data(), __s1.data() + __s1.length(), in operator ()()
Dvalarray_array.h303 __valarray_copy(const _Tp* __restrict__ __src, size_t __n, size_t __s1, in _GLIBCXX_VISIBILITY()
307 __dst[__i * __s2] = __src[__i * __s1]; in _GLIBCXX_VISIBILITY()
476 __valarray_copy(_Array<_Tp> __a, size_t __n, size_t __s1, in _GLIBCXX_VISIBILITY()
478 { std::__valarray_copy(__a._M_data, __n, __s1, __b._M_data, __s2); } in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
Dchar_traits.h106 compare(const char_type* __s1, const char_type* __s2, std::size_t __n); in _GLIBCXX_VISIBILITY()
115 move(char_type* __s1, const char_type* __s2, std::size_t __n); in _GLIBCXX_VISIBILITY()
118 copy(char_type* __s1, const char_type* __s2, std::size_t __n); in _GLIBCXX_VISIBILITY()
147 compare(const char_type* __s1, const char_type* __s2, std::size_t __n) in _GLIBCXX_VISIBILITY()
150 if (lt(__s1[__i], __s2[__i])) in _GLIBCXX_VISIBILITY()
152 else if (lt(__s2[__i], __s1[__i])) in _GLIBCXX_VISIBILITY()
182 move(char_type* __s1, const char_type* __s2, std::size_t __n) in _GLIBCXX_VISIBILITY()
184 return static_cast<_CharT*>(__builtin_memmove(__s1, __s2, in _GLIBCXX_VISIBILITY()
191 copy(char_type* __s1, const char_type* __s2, std::size_t __n) in _GLIBCXX_VISIBILITY()
194 std::copy(__s2, __s2 + __n, __s1); in _GLIBCXX_VISIBILITY()
[all …]
Dlocale_classes.tcc81 operator()(const basic_string<_CharT, _Traits, _Alloc>& __s1, in operator ()() argument
86 return (__collate.compare(__s1.data(), __s1.data() + __s1.length(), in operator ()()
Dvalarray_array.h299 __valarray_copy(const _Tp* __restrict__ __src, size_t __n, size_t __s1, in _GLIBCXX_VISIBILITY()
303 __dst[__i * __s2] = __src[__i * __s1]; in _GLIBCXX_VISIBILITY()
473 __valarray_copy(_Array<_Tp> __a, size_t __n, size_t __s1, in _GLIBCXX_VISIBILITY()
475 { std::__valarray_copy(__a._M_data, __n, __s1, __b._M_data, __s2); } in _GLIBCXX_VISIBILITY()
Drandom.h518 _UIntType1 __d1, size_t __s1, in _GLIBCXX_VISIBILITY()
525 __m1, __r1, __a1, __u1, __d1, __s1, __b1, __t1, __c1, in _GLIBCXX_VISIBILITY()
544 _UIntType1 __d1, size_t __s1, in _GLIBCXX_VISIBILITY()
551 __r1, __a1, __u1, __d1, __s1, __b1, __t1, __c1, in _GLIBCXX_VISIBILITY()
730 template<typename _UIntType1, size_t __w1, size_t __s1, size_t __r1, in _GLIBCXX_VISIBILITY()
735 __s1, __r1>&); in _GLIBCXX_VISIBILITY()
749 template<typename _UIntType1, size_t __w1, size_t __s1, size_t __r1, in _GLIBCXX_VISIBILITY()
754 __s1, __r1>&); in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/
Dpod_char_traits.h118 compare(const char_type* __s1, const char_type* __s2, size_t __n) in _GLIBCXX_VISIBILITY()
121 if (!eq(__s1[__i], __s2[__i])) in _GLIBCXX_VISIBILITY()
122 return lt(__s1[__i], __s2[__i]) ? -1 : 1; in _GLIBCXX_VISIBILITY()
145 move(char_type* __s1, const char_type* __s2, size_t __n) in _GLIBCXX_VISIBILITY()
148 return __s1; in _GLIBCXX_VISIBILITY()
150 (__builtin_memmove(__s1, __s2, __n * sizeof(char_type))); in _GLIBCXX_VISIBILITY()
154 copy(char_type* __s1, const char_type* __s2, size_t __n) in _GLIBCXX_VISIBILITY()
157 return __s1; in _GLIBCXX_VISIBILITY()
158 std::copy(__s2, __s2 + __n, __s1); in _GLIBCXX_VISIBILITY()
159 return __s1; in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/ext/
Dpod_char_traits.h117 compare(const char_type* __s1, const char_type* __s2, size_t __n) in _GLIBCXX_VISIBILITY()
120 if (!eq(__s1[__i], __s2[__i])) in _GLIBCXX_VISIBILITY()
121 return lt(__s1[__i], __s2[__i]) ? -1 : 1; in _GLIBCXX_VISIBILITY()
144 move(char_type* __s1, const char_type* __s2, size_t __n) in _GLIBCXX_VISIBILITY()
147 (__builtin_memmove(__s1, __s2, __n * sizeof(char_type))); in _GLIBCXX_VISIBILITY()
151 copy(char_type* __s1, const char_type* __s2, size_t __n) in _GLIBCXX_VISIBILITY()
153 std::copy(__s2, __s2 + __n, __s1); in _GLIBCXX_VISIBILITY()
154 return __s1; in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/config/io/
Dbasic_file_stdio.cc139 xwritev(int __fd, const char* __s1, std::streamsize __n1, in xwritev() argument
151 __iov[0].iov_base = const_cast<char*>(__s1); in xwritev()
171 __s1 += __ret; in xwritev()
295 __basic_file<char>::xsputn_2(const char* __s1, streamsize __n1, in xsputn_2() argument
300 __ret = xwritev(this->fd(), __s1, __n1, __s2, __n2); in xsputn_2()
303 __ret = xwrite(this->fd(), __s1, __n1); in xsputn_2()
Dbasic_file_stdio.h111 xsputn_2(const char* __s1, streamsize __n1, in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/config/io/
Dbasic_file_stdio.cc140 xwritev(int __fd, const char* __s1, std::streamsize __n1, in xwritev() argument
152 __iov[0].iov_base = const_cast<char*>(__s1); in xwritev()
172 __s1 += __ret; in xwritev()
303 __basic_file<char>::xsputn_2(const char* __s1, streamsize __n1, in xsputn_2() argument
308 __ret = xwritev(this->fd(), __s1, __n1, __s2, __n2); in xsputn_2()
311 __ret = xwrite(this->fd(), __s1, __n1); in xsputn_2()
Dbasic_file_stdio.h92 xsputn_2(const char* __s1, streamsize __n1, in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/c_global/
Dcstring110 strpbrk(char* __s1, const char* __s2)
111 { return __builtin_strpbrk(__s1, __s2); }
118 strstr(char* __s1, const char* __s2)
119 { return __builtin_strstr(__s1, __s2); }
Dcwchar218 wcspbrk(wchar_t* __s1, const wchar_t* __s2)
219 { return wcspbrk(const_cast<const wchar_t*>(__s1), __s2); }
226 wcsstr(wchar_t* __s1, const wchar_t* __s2)
227 { return wcsstr(const_cast<const wchar_t*>(__s1), __s2); }
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/c_global/
Dcstring108 strpbrk(char* __s1, const char* __s2)
109 { return __builtin_strpbrk(__s1, __s2); }
116 strstr(char* __s1, const char* __s2)
117 { return __builtin_strstr(__s1, __s2); }
Dcwchar216 wcspbrk(wchar_t* __s1, const wchar_t* __s2)
217 { return wcspbrk(const_cast<const wchar_t*>(__s1), __s2); }
224 wcsstr(wchar_t* __s1, const wchar_t* __s2)
225 { return wcsstr(const_cast<const wchar_t*>(__s1), __s2); }
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/c_std/
Dcstring110 strpbrk(char* __s1, const char* __s2)
111 { return __builtin_strpbrk(__s1, __s2); }
118 strstr(char* __s1, const char* __s2)
119 { return __builtin_strstr(__s1, __s2); }
Dcwchar214 wcspbrk(wchar_t* __s1, const wchar_t* __s2)
215 { return wcspbrk(const_cast<const wchar_t*>(__s1), __s2); }
222 wcsstr(wchar_t* __s1, const wchar_t* __s2)
223 { return wcsstr(const_cast<const wchar_t*>(__s1), __s2); }
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr1/
Drandom.h647 _UIntType1 __a1, int __u1, int __s1, _UIntType1 __b1, int __t1, in _GLIBCXX_VISIBILITY()
653 __a1, __u1, __s1, __b1, __t1, __c1, __l1>& __x); in _GLIBCXX_VISIBILITY()
666 _UIntType1 __a1, int __u1, int __s1, _UIntType1 __b1, int __t1, in _GLIBCXX_VISIBILITY()
672 __a1, __u1, __s1, __b1, __t1, __c1, __l1>& __x); in _GLIBCXX_VISIBILITY()
848 template<typename _IntType1, _IntType1 __m1, int __s1, int __r1, in _GLIBCXX_VISIBILITY()
852 const subtract_with_carry<_IntType1, __m1, __s1, in _GLIBCXX_VISIBILITY()
865 template<typename _IntType1, _IntType1 __m1, int __s1, int __r1, in _GLIBCXX_VISIBILITY()
869 subtract_with_carry<_IntType1, __m1, __s1, __r1>& __x); in _GLIBCXX_VISIBILITY()
1029 template<typename _RealType1, int __w1, int __s1, int __r1, in _GLIBCXX_VISIBILITY()
1033 const subtract_with_carry_01<_RealType1, __w1, __s1, in _GLIBCXX_VISIBILITY()
[all …]
Drandom.tcc770 template<class _UniformRandomNumberGenerator1, int __s1,
773 xor_combine<_UniformRandomNumberGenerator1, __s1,
776 template<class _UniformRandomNumberGenerator1, int __s1,
779 xor_combine<_UniformRandomNumberGenerator1, __s1,
782 template<class _UniformRandomNumberGenerator1, int __s1,
785 xor_combine<_UniformRandomNumberGenerator1, __s1,
793 __detail::_Shift<result_type, __w - __s1>::__value - 1); in _M_initialize_max()
800 if (__s1 < __s2) in _M_initialize_max()
801 _M_max = _M_initialize_max_aux(__m2, __m1, __s2 - __s1) << __s1; in _M_initialize_max()
803 _M_max = _M_initialize_max_aux(__m1, __m2, __s1 - __s2) << __s2; in _M_initialize_max()
[all …]
Dell_integral.tcc375 _Tp __s1 = __ed * (-__c1 + __c3 * __ed in __ellint_rd() local
382 return _Tp(3) * __sigma + __power4 * (_Tp(1) + __s1 + __s2) in __ellint_rd()
639 _Tp __s1 = _Tp(1) + __e2 * (-__c1 + _Tp(3) * __c3 * __e2 / _Tp(4) in __ellint_rj() local
646 return _Tp(3) * __sigma + __power4 * (__s1 + __s2 + __s3) in __ellint_rj()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr1/
Drandom.h643 _UIntType1 __a1, int __u1, int __s1, _UIntType1 __b1, int __t1, in _GLIBCXX_VISIBILITY()
649 __a1, __u1, __s1, __b1, __t1, __c1, __l1>& __x); in _GLIBCXX_VISIBILITY()
662 _UIntType1 __a1, int __u1, int __s1, _UIntType1 __b1, int __t1, in _GLIBCXX_VISIBILITY()
668 __a1, __u1, __s1, __b1, __t1, __c1, __l1>& __x); in _GLIBCXX_VISIBILITY()
844 template<typename _IntType1, _IntType1 __m1, int __s1, int __r1, in _GLIBCXX_VISIBILITY()
848 const subtract_with_carry<_IntType1, __m1, __s1, in _GLIBCXX_VISIBILITY()
861 template<typename _IntType1, _IntType1 __m1, int __s1, int __r1, in _GLIBCXX_VISIBILITY()
865 subtract_with_carry<_IntType1, __m1, __s1, __r1>& __x); in _GLIBCXX_VISIBILITY()
1025 template<typename _RealType1, int __w1, int __s1, int __r1, in _GLIBCXX_VISIBILITY()
1029 const subtract_with_carry_01<_RealType1, __w1, __s1, in _GLIBCXX_VISIBILITY()
[all …]
Drandom.tcc767 template<class _UniformRandomNumberGenerator1, int __s1,
770 xor_combine<_UniformRandomNumberGenerator1, __s1,
773 template<class _UniformRandomNumberGenerator1, int __s1,
776 xor_combine<_UniformRandomNumberGenerator1, __s1,
779 template<class _UniformRandomNumberGenerator1, int __s1,
782 xor_combine<_UniformRandomNumberGenerator1, __s1,
790 __detail::_Shift<result_type, __w - __s1>::__value - 1); in _M_initialize_max()
797 if (__s1 < __s2) in _M_initialize_max()
798 _M_max = _M_initialize_max_aux(__m2, __m1, __s2 - __s1) << __s1; in _M_initialize_max()
800 _M_max = _M_initialize_max_aux(__m1, __m2, __s1 - __s2) << __s2; in _M_initialize_max()
[all …]
Dell_integral.tcc379 _Tp __s1 = __ed * (-__c1 + __c3 * __ed in __ellint_rd() local
386 return _Tp(3) * __sigma + __power4 * (_Tp(1) + __s1 + __s2) in __ellint_rd()
643 _Tp __s1 = _Tp(1) + __e2 * (-__c1 + _Tp(3) * __c3 * __e2 / _Tp(4) in __ellint_rj() local
650 return _Tp(3) * __sigma + __power4 * (__s1 + __s2 + __s3) in __ellint_rj()

12