Home
last modified time | relevance | path

Searched refs:__s2 (Results 1 – 19 of 19) sorted by relevance

/NextBSD/contrib/libstdc++/include/bits/
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) 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 …]
Dvalarray_array.h307 _Tp* __restrict__ __dst, size_t __s2)
310 __dst[__i * __s2] = __src[__i * __s1];
482 _Array<_Tp> __b, size_t __s2)
483 { std::__valarray_copy(__a._M_data, __n, __s1, __b._M_data, __s2); }
Dlocale_classes.h261 const basic_string<_Char, _Traits, _Alloc>& __s2) const; in _GLIBCXX_BEGIN_NAMESPACE()
Dlocale_facets.tcc69 const basic_string<_CharT, _Traits, _Alloc>& __s2) const in operator ()()
74 __s2.data(), __s2.data() + __s2.length()) < 0); in operator ()()
/NextBSD/contrib/libstdc++/include/ext/
Dpod_char_traits.h114 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);
/NextBSD/contrib/libstdc++/include/c_std/
Dstd_cstring.h113 strpbrk(char* __s1, const char* __s2) in strpbrk() argument
114 { return __builtin_strpbrk(const_cast<const char*>(__s1), __s2); } in strpbrk()
125 strstr(char* __s1, const char* __s2) in strstr() argument
126 { return __builtin_strstr(const_cast<const char*>(__s1), __s2); } in strstr()
Dstd_cwchar.h217 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()
/NextBSD/contrib/libstdc++/config/io/
Dbasic_file_stdio.cc142 const char* __s2, std::streamsize __n2) in xwritev() argument
148 __iov[1].iov_base = const_cast<char*>(__s2); in xwritev()
169 __nleft -= xwrite(__fd, __s2 + __off, __n2 - __off); in xwritev()
303 const char* __s2, streamsize __n2) in xsputn_2() argument
307 __ret = xwritev(this->fd(), __s1, __n1, __s2, __n2); in xsputn_2()
313 __ret += xwrite(this->fd(), __s2, __n2); in xsputn_2()
Dbasic_file_stdio.h95 const char* __s2, streamsize __n2);
/NextBSD/contrib/libc++/include/
Dcwchar177 …TY const wchar_t* wcspbrk(const wchar_t* __s1, const wchar_t* __s2) {return ::wcspbrk(__s1, __s2);}
178 …TY wchar_t* wcspbrk( wchar_t* __s1, const wchar_t* __s2) {return ::wcspbrk(__s1, __s2);}
183 …LITY const wchar_t* wcsstr(const wchar_t* __s1, const wchar_t* __s2) {return ::wcsstr(__s1, __s2);}
184 …LITY wchar_t* wcsstr( wchar_t* __s1, const wchar_t* __s2) {return ::wcsstr(__s1, __s2);}
Dcstring99 …_VISIBILITY char* strpbrk( char* __s1, const char* __s2) {return ::strpbrk(__s1, __s2);}
102 …NE_VISIBILITY char* strstr( char* __s1, const char* __s2) {return ::strstr(__s1, __s2);}
Dstring519 static int compare(const char_type* __s1, const char_type* __s2, size_t __n);
522 static char_type* move(char_type* __s1, const char_type* __s2, size_t __n);
523 static char_type* copy(char_type* __s1, const char_type* __s2, size_t __n);
540 char_traits<_CharT>::compare(const char_type* __s1, const char_type* __s2, size_t __n)
542 for (; __n; --__n, ++__s1, ++__s2)
544 if (lt(*__s1, *__s2))
546 if (lt(*__s2, *__s1))
579 char_traits<_CharT>::move(char_type* __s1, const char_type* __s2, size_t __n)
582 if (__s1 < __s2)
584 for (; __n; --__n, ++__s1, ++__s2)
[all …]
Dregex1483 explicit __owns_two_states(__node<_CharT>* __s1, base* __s2)
1484 : base(__s1), __second_(__s2) {}
1520 __node<_CharT>* __s1, __owns_one_state<_CharT>* __s2,
1525 : base(__s1, __s2), __min_(__min), __max_(__max), __loop_id_(__loop_id),
1619 __owns_one_state<_CharT>* __s2)
1620 : base(__s1, __s2) {}
2333 string_type __s2 = __traits_.transform(&__ch2.first,
2337 if (__ranges_[__i].first <= __s2 &&
2338 __s2 <= __ranges_[__i].second)
2347 string_type __s2 = __traits_.transform_primary(&__ch2.first,
[all …]
/NextBSD/contrib/libstdc++/include/tr1/
Drandom.tcc646 class _UniformRandomNumberGenerator2, int __s2>
649 _UniformRandomNumberGenerator2, __s2>::
660 __detail::_Shift<result_type, __w - __s2>::__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()
670 class _UniformRandomNumberGenerator2, int __s2>
672 _UniformRandomNumberGenerator2, __s2>::result_type
674 _UniformRandomNumberGenerator2, __s2>::
708 class _UniformRandomNumberGenerator2, int __s2,
[all …]
Drandom1238 class _UniformRandomNumberGenerator2, int __s2>
1264 static const int shift2 = __s2;
/NextBSD/crypto/openssl/crypto/camellia/asm/
HDcmll-x86.pl57 $__s2=&DWP(12,"esp"); # s2 backing store
247 &mov ($__s2,@T[2]);
265 &xor (@T[2],$__s2);
268 &mov ($__s2,@T[2]); # s2^=s3|key[3];
282 &mov (@T[0],$__s2);
422 &mov ($__s2,@T[2]);
440 &xor (@T[2],$__s2);
443 &mov ($__s2,@T[2]); # s2^=s3|key[3];
457 &mov (@T[0],$__s2);
/NextBSD/contrib/llvm/tools/clang/lib/Headers/
HDmmintrin.h395 _mm_set_pi16(short __s3, short __s2, short __s1, short __s0) in _mm_set_pi16() argument
397 return (__m64)__builtin_ia32_vec_init_v4hi(__s0, __s1, __s2, __s3); in _mm_set_pi16()
/NextBSD/crypto/openssl/crypto/aes/asm/
HDaes-586.pl211 $__s2=&DWP(12,"esp"); # s2 backing store
1323 &mov ($s[2],$__s2) if($i==1);
/NextBSD/contrib/tcpdump/
HDtcpdump.c63 extern int strcasecmp (const char *__s1, const char *__s2);