/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
H A D | ios_base.h | 908 boolalpha(ios_base& __base) in _GLIBCXX_VISIBILITY() 910 __base.setf(ios_base::boolalpha); in _GLIBCXX_VISIBILITY() 911 return __base; in _GLIBCXX_VISIBILITY() 916 noboolalpha(ios_base& __base) in _GLIBCXX_VISIBILITY() 918 __base.unsetf(ios_base::boolalpha); in _GLIBCXX_VISIBILITY() 919 return __base; in _GLIBCXX_VISIBILITY() 924 showbase(ios_base& __base) in _GLIBCXX_VISIBILITY() 926 __base.setf(ios_base::showbase); in _GLIBCXX_VISIBILITY() 927 return __base; in _GLIBCXX_VISIBILITY() 932 noshowbase(ios_base& __base) in _GLIBCXX_VISIBILITY() [all …]
|
H A D | sstream.tcc | 96 char_type* __base = const_cast<char_type*>(_M_string.data()); in overflow() local 97 _M_pbump(__base, __base + __capacity, this->pptr() - this->pbase()); in overflow() 102 this->setg(__base, __base + __nget, __base + __eget + 1); in overflow() 246 _M_sync(char_type* __base, __size_type __i, __size_type __o) in _M_sync() argument 250 char_type* __endg = __base + _M_string.size(); in _M_sync() 251 char_type* __endp = __base + _M_string.capacity(); in _M_sync() 253 if (__base != _M_string.data()) in _M_sync() 262 this->setg(__base, __base + __i, __endg); in _M_sync() 265 _M_pbump(__base, __endp, __o); in _M_sync()
|
H A D | charconv.h | 47 __to_chars_len(_Tp __value, int __base = 10) noexcept in _GLIBCXX_VISIBILITY() 53 const unsigned __b2 = __base * __base; in _GLIBCXX_VISIBILITY() 54 const unsigned __b3 = __b2 * __base; in _GLIBCXX_VISIBILITY() 55 const unsigned long __b4 = __b3 * __base; in _GLIBCXX_VISIBILITY() 58 if (__value < (unsigned)__base) return __n; in _GLIBCXX_VISIBILITY()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
H A D | ios_base.h | 921 boolalpha(ios_base& __base) in _GLIBCXX_VISIBILITY() 923 __base.setf(ios_base::boolalpha); in _GLIBCXX_VISIBILITY() 924 return __base; in _GLIBCXX_VISIBILITY() 929 noboolalpha(ios_base& __base) in _GLIBCXX_VISIBILITY() 931 __base.unsetf(ios_base::boolalpha); in _GLIBCXX_VISIBILITY() 932 return __base; in _GLIBCXX_VISIBILITY() 937 showbase(ios_base& __base) in _GLIBCXX_VISIBILITY() 939 __base.setf(ios_base::showbase); in _GLIBCXX_VISIBILITY() 940 return __base; in _GLIBCXX_VISIBILITY() 945 noshowbase(ios_base& __base) in _GLIBCXX_VISIBILITY() [all …]
|
H A D | sstream.tcc | 96 char_type* __base = const_cast<char_type*>(_M_string.data()); in overflow() local 97 _M_pbump(__base, __base + __capacity, this->pptr() - this->pbase()); in overflow() 102 this->setg(__base, __base + __nget, __base + __eget + 1); in overflow() 246 _M_sync(char_type* __base, __size_type __i, __size_type __o) in _M_sync() argument 250 char_type* __endg = __base + _M_string.size(); in _M_sync() 251 char_type* __endp = __base + _M_string.capacity(); in _M_sync() 253 if (__base != _M_string.data()) in _M_sync() 262 this->setg(__base, __base + __i, __endg); in _M_sync() 265 _M_pbump(__base, __endp, __o); in _M_sync()
|
H A D | charconv.h | 47 __to_chars_len(_Tp __value, int __base = 10) noexcept in _GLIBCXX_VISIBILITY() 53 const unsigned __b2 = __base * __base; in _GLIBCXX_VISIBILITY() 54 const unsigned __b3 = __b2 * __base; in _GLIBCXX_VISIBILITY() 55 const unsigned long __b4 = __b3 * __base; in _GLIBCXX_VISIBILITY() 58 if (__value < (unsigned)__base) return __n; in _GLIBCXX_VISIBILITY()
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | deque | 1282 typedef __deque_base<value_type, allocator_type> __base; 1284 typedef typename __base::__alloc_traits __alloc_traits; 1285 typedef typename __base::reference reference; 1286 typedef typename __base::const_reference const_reference; 1287 typedef typename __base::iterator iterator; 1288 typedef typename __base::const_iterator const_iterator; 1289 typedef typename __base::size_type size_type; 1290 typedef typename __base::difference_type difference_type; 1292 typedef typename __base::pointer pointer; 1293 typedef typename __base::const_pointer const_pointer; [all …]
|
H A D | __functional_03 | 21 template<class _Fp> class __base; 24 class __base<_Rp()> 26 __base(const __base&); 27 __base& operator=(const __base&); 29 __base() {} 30 virtual ~__base() {} 31 virtual __base* __clone() const = 0; 32 virtual void __clone(__base*) const = 0; 43 class __base<_Rp(_A0)> 45 __base(const __base&); [all …]
|
H A D | limits | 446 typedef __libcpp_numeric_limits<typename remove_cv<_Tp>::type> __base; 447 typedef typename __base::type type; 449 static _LIBCPP_CONSTEXPR const bool is_specialized = __base::is_specialized; 450 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type min() _NOEXCEPT {return __base::min();} 451 _LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type max() _NOEXCEPT {return __base::max();} 452 …_LIBCPP_INLINE_VISIBILITY static _LIBCPP_CONSTEXPR type lowest() _NOEXCEPT {return __base::lowest(… 454 static _LIBCPP_CONSTEXPR const int digits = __base::digits; 455 static _LIBCPP_CONSTEXPR const int digits10 = __base::digits10; 456 static _LIBCPP_CONSTEXPR const int max_digits10 = __base::max_digits10; 457 static _LIBCPP_CONSTEXPR const bool is_signed = __base::is_signed; [all …]
|
H A D | shared_mutex | 182 __shared_mutex_base __base; 184 _LIBCPP_INLINE_VISIBILITY shared_mutex() : __base() {} 191 _LIBCPP_INLINE_VISIBILITY void lock() { return __base.lock(); } 192 _LIBCPP_INLINE_VISIBILITY bool try_lock() { return __base.try_lock(); } 193 _LIBCPP_INLINE_VISIBILITY void unlock() { return __base.unlock(); } 196 _LIBCPP_INLINE_VISIBILITY void lock_shared() { return __base.lock_shared(); } 197 _LIBCPP_INLINE_VISIBILITY bool try_lock_shared() { return __base.try_lock_shared(); } 198 _LIBCPP_INLINE_VISIBILITY void unlock_shared() { return __base.unlock_shared(); } 201 // _LIBCPP_INLINE_VISIBILITY native_handle_type native_handle() { return __base::unlock_shared(… 208 __shared_mutex_base __base; [all …]
|
H A D | charconv | 384 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, 394 return __to_chars_integral(__first, __last, __x, __base, false_type()); 398 …TY_TO_CHARS _LIBCPP_INLINE_VISIBILITY int __to_chars_integral_width(_Tp __value, unsigned __base) { 401 unsigned __base_2 = __base * __base; 402 unsigned __base_3 = __base_2 * __base; 407 if (__value < __base) 426 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, 429 if (__base == 10) 433 int __n = __to_chars_integral_width(__value, __base); 440 unsigned __c = __value % __base; [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__support/solaris/ |
H A D | xlocale.h | 37 int __base, locale_t __loc) { in strtoll_l() argument 38 return strtoll(__nptr, __endptr, __base); in strtoll_l() 42 int __base, locale_t __loc) { in strtol_l() argument 43 return strtol(__nptr, __endptr, __base); in strtol_l() 47 int __base, locale_t __loc) { in strtoull_l() argument 48 return strtoull(__nptr, __endptr, __base); in strtoull_l() 52 int __base, locale_t __loc) { in strtoul_l() argument 53 return strtoul(__nptr, __endptr, __base); in strtoul_l()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
H A D | charconv | 111 __to_chars_len(_Tp __value, int __base /* = 10 */) noexcept; 121 __to_chars(char* __first, char* __last, _Tp __val, int __base) noexcept 128 const unsigned __len = __to_chars_len(__val, __base); 146 while (__val >= (unsigned)__base) 148 auto const __quo = __val / __base; 149 auto const __rem = __val % __base; 324 __to_chars_i(char* __first, char* __last, _Tp __value, int __base = 10) 326 __glibcxx_assert(2 <= __base && __base <= 36); 346 switch (__base) 357 return __detail::__to_chars(__first, __last, __unsigned_val, __base); [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/debug/ |
H A D | macros.h | 348 __gnu_debug::__base(_First), \ 349 __gnu_debug::__base(_Last)), \ 360 __gnu_debug::__base(_First), \ 361 __gnu_debug::__base(_Last), _Pred), \ 371 __gnu_debug::__check_sorted_set(__gnu_debug::__base(_First1), \ 372 __gnu_debug::__base(_Last1), _First2),\ 381 __gnu_debug::__check_sorted_set(__gnu_debug::__base(_First1), \ 382 __gnu_debug::__base(_Last1), \ 394 __gnu_debug::__base(_First), \ 395 __gnu_debug::__base(_Last), _Value), \ [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/debug/ |
H A D | macros.h | 351 __gnu_debug::__base(_First), \ 352 __gnu_debug::__base(_Last)), \ 363 __gnu_debug::__base(_First), \ 364 __gnu_debug::__base(_Last), _Pred), \ 374 __gnu_debug::__check_sorted_set(__gnu_debug::__base(_First1), \ 375 __gnu_debug::__base(_Last1), _First2),\ 384 __gnu_debug::__check_sorted_set(__gnu_debug::__base(_First1), \ 385 __gnu_debug::__base(_Last1), \ 397 __gnu_debug::__base(_First), \ 398 __gnu_debug::__base(_Last), _Value), \ [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/Configurations/platform/ |
H A D | BASE.pm | 28 sub staticname { return __base($_[1], '.a') } # Name of static lib 41 sub def { return __base($_[1], '.ld') . $_[0]->defext() } 42 sub obj { return __base($_[1], '.o') . $_[0]->objext() } 43 sub res { return __base($_[1], '.res') . $_[0]->resext() } 44 sub dep { return __base($_[1], '.o') . $_[0]->depext() } # <- objname 45 sub asm { return __base($_[1], '.s') . $_[0]->asmext() } 70 sub __base { subroutine
|
/netbsd-src/external/apache2/llvm/dist/libcxx/src/ |
H A D | shared_mutex.cpp | 108 shared_timed_mutex::shared_timed_mutex() : __base() {} in shared_timed_mutex() 109 void shared_timed_mutex::lock() { return __base.lock(); } in lock() 110 bool shared_timed_mutex::try_lock() { return __base.try_lock(); } in try_lock() 111 void shared_timed_mutex::unlock() { return __base.unlock(); } in unlock() 112 void shared_timed_mutex::lock_shared() { return __base.lock_shared(); } in lock_shared() 113 bool shared_timed_mutex::try_lock_shared() { return __base.try_lock_shared(); } in try_lock_shared() 114 void shared_timed_mutex::unlock_shared() { return __base.unlock_shared(); } in unlock_shared()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/i386/ |
H A D | avx2intrin.h | 1249 _mm_i32gather_pd (double const *__base, __m128i __index, const int __scale) in _mm_i32gather_pd() argument 1255 __base, in _mm_i32gather_pd() 1263 _mm_mask_i32gather_pd (__m128d __src, double const *__base, __m128i __index, in _mm_mask_i32gather_pd() argument 1267 __base, in _mm_mask_i32gather_pd() 1275 _mm256_i32gather_pd (double const *__base, __m128i __index, const int __scale) in _mm256_i32gather_pd() argument 1281 __base, in _mm256_i32gather_pd() 1289 _mm256_mask_i32gather_pd (__m256d __src, double const *__base, in _mm256_mask_i32gather_pd() argument 1293 __base, in _mm256_mask_i32gather_pd() 1301 _mm_i64gather_pd (double const *__base, __m128i __index, const int __scale) in _mm_i64gather_pd() argument 1307 __base, in _mm_i64gather_pd() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
H A D | charconv | 109 __to_chars_len(_Tp __value, int __base /* = 10 */) noexcept; 119 __to_chars(char* __first, char* __last, _Tp __val, int __base) noexcept 126 const unsigned __len = __to_chars_len(__val, __base); 144 while (__val >= (unsigned)__base) 146 auto const __quo = __val / __base; 147 auto const __rem = __val % __base; 322 __to_chars_i(char* __first, char* __last, _Tp __value, int __base = 10) 324 __glibcxx_assert(2 <= __base && __base <= 36); 344 switch (__base) 355 return __detail::__to_chars(__first, __last, __unsigned_val, __base); [all …]
|
/netbsd-src/external/gpl3/gcc/dist/gcc/config/i386/ |
H A D | avx2intrin.h | 1252 _mm_i32gather_pd (double const *__base, __m128i __index, const int __scale) in _mm_i32gather_pd() argument 1258 __base, in _mm_i32gather_pd() 1266 _mm_mask_i32gather_pd (__m128d __src, double const *__base, __m128i __index, in _mm_mask_i32gather_pd() argument 1270 __base, in _mm_mask_i32gather_pd() 1278 _mm256_i32gather_pd (double const *__base, __m128i __index, const int __scale) in _mm256_i32gather_pd() argument 1284 __base, in _mm256_i32gather_pd() 1292 _mm256_mask_i32gather_pd (__m256d __src, double const *__base, in _mm256_mask_i32gather_pd() argument 1296 __base, in _mm256_mask_i32gather_pd() 1304 _mm_i64gather_pd (double const *__base, __m128i __index, const int __scale) in _mm_i64gather_pd() argument 1310 __base, in _mm_i64gather_pd() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/ |
H A D | socket | 524 using __base = __socket_impl; 531 __basic_socket_impl(io_context& __ctx) : __base(__ctx) { } 537 : __base(std::move(__rhs)), _M_protocol(std::move(__rhs._M_protocol)) 546 __base::operator=(std::move(__rhs)); 706 using __base = __basic_socket_impl<_Protocol>; 718 executor_type get_executor() noexcept { return __base::get_executor(); } 721 native_handle() noexcept { return __base::native_handle(); } 729 { __base::open(__protocol, __ec); } 743 { __base::assign(__protocol, __native_socket, __ec); } 749 { return __base::release(__ec); } [all …]
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__support/ibm/ |
H A D | xlocale.h | 258 int __base, locale_t locale) { in strtoll_l() argument 260 return strtoll(__nptr, __endptr, __base); in strtoll_l() 265 int __base, locale_t locale) { in strtol_l() argument 267 return strtol(__nptr, __endptr, __base); in strtol_l() 293 int __base, locale_t locale) { in strtoull_l() argument 295 return strtoull(__nptr, __endptr, __base); in strtoull_l() 300 int __base, locale_t locale) { in strtoul_l() argument 302 return strtoul(__nptr, __endptr, __base); in strtoul_l()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/ |
H A D | socket | 547 using __base = __socket_impl; 554 __basic_socket_impl(io_context& __ctx) : __base(__ctx) { } 560 : __base(std::move(__rhs)), _M_protocol(std::move(__rhs._M_protocol)) 569 __base::operator=(std::move(__rhs)); 739 using __base = __basic_socket_impl<_Protocol>; 754 executor_type get_executor() noexcept { return __base::get_executor(); } 757 native_handle() noexcept { return __base::native_handle(); } 765 { __base::open(__protocol, __ec); } 779 { __base::assign(__protocol, __native_socket, __ec); } 785 { return __base::release(__ec); } [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/ |
H A D | localename.cc | 148 locale::locale(const locale& __base, const char* __s, category __cat) in locale() argument 155 _M_coalesce(__base, __add, __cat); in locale() 158 locale::locale(const locale& __base, const locale& __add, category __cat) in locale() argument 160 { _M_coalesce(__base, __add, __cat); } in locale() 163 locale::_M_coalesce(const locale& __base, const locale& __add, in _M_coalesce() argument 167 _M_impl = new _Impl(*__base._M_impl, 1); in _M_coalesce()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/ |
H A D | localename.cc | 144 locale::locale(const locale& __base, const char* __s, category __cat) in locale() argument 151 _M_coalesce(__base, __add, __cat); in locale() 154 locale::locale(const locale& __base, const locale& __add, category __cat) in locale() argument 156 { _M_coalesce(__base, __add, __cat); } in locale() 159 locale::_M_coalesce(const locale& __base, const locale& __add, in _M_coalesce() argument 163 _M_impl = new _Impl(*__base._M_impl, 1); in _M_coalesce()
|