| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| D | atomic_base.h | 100 operator|(memory_order __m, __memory_order_modifier __mod) in _GLIBCXX_VISIBILITY() 102 return memory_order(int(__m) | int(__mod)); in _GLIBCXX_VISIBILITY() 106 operator&(memory_order __m, __memory_order_modifier __mod) in _GLIBCXX_VISIBILITY() 108 return memory_order(int(__m) & int(__mod)); in _GLIBCXX_VISIBILITY() 115 __cmpexch_failure_order2(memory_order __m) noexcept in _GLIBCXX_VISIBILITY() 117 return __m == memory_order_acq_rel ? memory_order_acquire in _GLIBCXX_VISIBILITY() 118 : __m == memory_order_release ? memory_order_relaxed : __m; in _GLIBCXX_VISIBILITY() 122 __cmpexch_failure_order(memory_order __m) noexcept in _GLIBCXX_VISIBILITY() 124 return memory_order(__cmpexch_failure_order2(__m & __memory_order_mask) in _GLIBCXX_VISIBILITY() 125 | __memory_order_modifier(__m & __memory_order_modifier_mask)); in _GLIBCXX_VISIBILITY() [all …]
|
| D | unique_lock.h | 68 explicit unique_lock(mutex_type& __m) in _GLIBCXX_VISIBILITY() 69 : _M_device(std::__addressof(__m)), _M_owns(false) in _GLIBCXX_VISIBILITY() 75 unique_lock(mutex_type& __m, defer_lock_t) noexcept in _GLIBCXX_VISIBILITY() 76 : _M_device(std::__addressof(__m)), _M_owns(false) in _GLIBCXX_VISIBILITY() 79 unique_lock(mutex_type& __m, try_to_lock_t) in _GLIBCXX_VISIBILITY() 80 : _M_device(std::__addressof(__m)), _M_owns(_M_device->try_lock()) in _GLIBCXX_VISIBILITY() 83 unique_lock(mutex_type& __m, adopt_lock_t) noexcept in _GLIBCXX_VISIBILITY() 84 : _M_device(std::__addressof(__m)), _M_owns(true) in _GLIBCXX_VISIBILITY() 90 unique_lock(mutex_type& __m, in _GLIBCXX_VISIBILITY() 92 : _M_device(std::__addressof(__m)), in _GLIBCXX_VISIBILITY() [all …]
|
| D | std_mutex.h | 167 wait(mutex& __m) in _GLIBCXX_VISIBILITY() 170 = __gthread_cond_wait(&_M_cond, __m.native_handle()); in _GLIBCXX_VISIBILITY() 175 wait_until(mutex& __m, timespec& __abs_time) in _GLIBCXX_VISIBILITY() 177 __gthread_cond_timedwait(&_M_cond, __m.native_handle(), &__abs_time); in _GLIBCXX_VISIBILITY() 182 wait_until(mutex& __m, clockid_t __clock, timespec& __abs_time) in _GLIBCXX_VISIBILITY() 184 pthread_cond_clockwait(&_M_cond, __m.native_handle(), __clock, in _GLIBCXX_VISIBILITY() 247 explicit lock_guard(mutex_type& __m) : _M_device(__m) in _GLIBCXX_VISIBILITY() 250 lock_guard(mutex_type& __m, adopt_lock_t) noexcept : _M_device(__m) in _GLIBCXX_VISIBILITY()
|
| D | valarray_array.tcc | 41 __valarray_fill(_Array<_Tp> __a, size_t __n, _Array<bool> __m, in __valarray_fill() argument 45 bool* __ok (__m._M_data); in __valarray_fill() 65 __valarray_copy(_Array<_Tp> __a, _Array<bool> __m, _Array<_Tp> __b, in __valarray_copy() argument 69 bool* __ok (__m._M_data); in __valarray_copy() 91 _Array<bool> __m) in __valarray_copy() argument 94 bool* __ok (__m._M_data); in __valarray_copy() 114 __valarray_copy(_Array<_Tp> __a, _Array<bool> __m, size_t __n, in __valarray_copy() argument 119 bool* __srcok (__m._M_data); in __valarray_copy() 196 _Array<_Tp> __a, _Array<bool> __m) in __valarray_copy() argument 198 bool* __ok (__m._M_data); in __valarray_copy() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/freebsd/ |
| D | ctype_inline.h | 43 is(mask __m, char __c) const in _GLIBCXX_VISIBILITY() 46 return _M_table[static_cast<unsigned char>(__c)] & __m; in _GLIBCXX_VISIBILITY() 48 return __istype(__c, __m); in _GLIBCXX_VISIBILITY() 66 mask __m = 0; in _GLIBCXX_VISIBILITY() 67 if (this->is(upper, *__low)) __m |= upper; in _GLIBCXX_VISIBILITY() 68 if (this->is(lower, *__low)) __m |= lower; in _GLIBCXX_VISIBILITY() 69 if (this->is(alpha, *__low)) __m |= alpha; in _GLIBCXX_VISIBILITY() 70 if (this->is(digit, *__low)) __m |= digit; in _GLIBCXX_VISIBILITY() 71 if (this->is(xdigit, *__low)) __m |= xdigit; in _GLIBCXX_VISIBILITY() 72 if (this->is(space, *__low)) __m |= space; in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/darwin/ |
| D | ctype_inline.h | 43 is(mask __m, char __c) const in _GLIBCXX_VISIBILITY() 46 return _M_table[static_cast<unsigned char>(__c)] & __m; in _GLIBCXX_VISIBILITY() 48 return __istype(__c, __m); in _GLIBCXX_VISIBILITY() 66 mask __m = 0; in _GLIBCXX_VISIBILITY() 67 if (this->is(upper, *__low)) __m |= upper; in _GLIBCXX_VISIBILITY() 68 if (this->is(lower, *__low)) __m |= lower; in _GLIBCXX_VISIBILITY() 69 if (this->is(alpha, *__low)) __m |= alpha; in _GLIBCXX_VISIBILITY() 70 if (this->is(digit, *__low)) __m |= digit; in _GLIBCXX_VISIBILITY() 71 if (this->is(xdigit, *__low)) __m |= xdigit; in _GLIBCXX_VISIBILITY() 72 if (this->is(space, *__low)) __m |= space; in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
| D | legendre_function.tcc | 138 __assoc_legendre_p(unsigned int __l, unsigned int __m, _Tp __x, in __assoc_legendre_p() argument 142 if (__m > __l) in __assoc_legendre_p() 146 else if (__m == 0) in __assoc_legendre_p() 151 if (__m > 0) in __assoc_legendre_p() 157 for (unsigned int __i = 1; __i <= __m; ++__i) in __assoc_legendre_p() 163 if (__l == __m) in __assoc_legendre_p() 166 _Tp __p_mp1m = _Tp(2 * __m + 1) * __x * __p_mm; in __assoc_legendre_p() 167 if (__l == __m + 1) in __assoc_legendre_p() 173 for (unsigned int __j = __m + 2; __j <= __l; ++__j) in __assoc_legendre_p() 176 - _Tp(__j + __m - 1) * __p_lm2m) / _Tp(__j - __m); in __assoc_legendre_p() [all …]
|
| D | random.tcc | 53 template<typename _Tp, _Tp __a, _Tp __c, _Tp __m, bool> 60 __x %= __m; in __calc() 63 static const _Tp __q = __m / __a; in __calc() 64 static const _Tp __r = __m % __a; in __calc() 71 __x = __m - __t2 + __t1; in __calc() 76 const _Tp __d = __m - __x; in __calc() 88 template<typename _Tp, _Tp __a, _Tp __c, _Tp __m> 89 struct _Mod<_Tp, __a, __c, __m, true> 97 template<class _UIntType, _UIntType __a, _UIntType __c, _UIntType __m> 99 linear_congruential<_UIntType, __a, __c, __m>::multiplier; [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
| D | atomic | 103 store(bool __i, memory_order __m = memory_order_seq_cst) noexcept 104 { _M_base.store(__i, __m); } 107 store(bool __i, memory_order __m = memory_order_seq_cst) volatile noexcept 108 { _M_base.store(__i, __m); } 111 load(memory_order __m = memory_order_seq_cst) const noexcept 112 { return _M_base.load(__m); } 115 load(memory_order __m = memory_order_seq_cst) const volatile noexcept 116 { return _M_base.load(__m); } 119 exchange(bool __i, memory_order __m = memory_order_seq_cst) noexcept 120 { return _M_base.exchange(__i, __m); } [all …]
|
| D | chrono | 127 operator/(int __m, last_spec) noexcept; 130 operator/(last_spec, int __m) noexcept; 276 operator/(const month& __m, const day& __d) noexcept; 279 operator/(int __m, const day& __d) noexcept; 282 operator/(const day& __d, const month& __m) noexcept; 285 operator/(const day& __d, int __m) noexcept; 304 month(unsigned __m) noexcept 305 : _M_m(__m) 339 operator+=(const months& __m) noexcept 341 *this = *this + __m; [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/os/vxworks/ |
| D | ctype_inline.h | 48 is(mask __m, char __c) const in _GLIBCXX_VISIBILITY() 49 { return __ctype[static_cast<unsigned char>(__c)] & __m; } in _GLIBCXX_VISIBILITY() 62 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 65 && !(__ctype[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY() 72 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 75 && (__ctype[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY() 83 is(mask __m, char __c) const in _GLIBCXX_VISIBILITY() 84 { return _Getpctype()[static_cast<int>(__c)] & __m; } in _GLIBCXX_VISIBILITY() 97 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 100 && !(_Getpctype()[static_cast<int>(*__low)] & __m)) in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/i386/ |
| D | mmintrin.h | 561 _mm_sll_pi16 (__m64 __m, __m64 __count) in _mm_sll_pi16() argument 563 return (__m64) __builtin_ia32_psllw ((__v4hi)__m, (__v4hi)__count); in _mm_sll_pi16() 567 _m_psllw (__m64 __m, __m64 __count) in _m_psllw() argument 569 return _mm_sll_pi16 (__m, __count); in _m_psllw() 573 _mm_slli_pi16 (__m64 __m, int __count) in _mm_slli_pi16() argument 575 return (__m64) __builtin_ia32_psllwi ((__v4hi)__m, __count); in _mm_slli_pi16() 579 _m_psllwi (__m64 __m, int __count) in _m_psllwi() argument 581 return _mm_slli_pi16 (__m, __count); in _m_psllwi() 586 _mm_sll_pi32 (__m64 __m, __m64 __count) in _mm_sll_pi32() argument 588 return (__m64) __builtin_ia32_pslld ((__v2si)__m, (__v2si)__count); in _mm_sll_pi32() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/os/generic/ |
| D | ctype_inline.h | 50 is(mask __m, char __c) const in _GLIBCXX_VISIBILITY() 53 return _M_table[static_cast<unsigned char>(__c)] & __m; in _GLIBCXX_VISIBILITY() 62 if (__m & __bit) in _GLIBCXX_VISIBILITY() 129 mask __m = 0; in _GLIBCXX_VISIBILITY() local 136 __m |= __bit; in _GLIBCXX_VISIBILITY() 138 *__vec = __m; in _GLIBCXX_VISIBILITY() 146 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 150 && !(_M_table[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY() 153 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY() 160 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/ |
| D | multiseq_selection.h | 145 _DifferenceType __m = std::distance(__begin_seqs, __end_seqs), __nn = 0, 148 for (_SeqNumber __i = 0; __i < __m; __i++) 159 for (_SeqNumber __i = 0; __i < __m; __i++) 165 _GLIBCXX_PARALLEL_ASSERT(__m != 0); 170 _DifferenceType* __ns = new _DifferenceType[__m]; 171 _DifferenceType* __a = new _DifferenceType[__m]; 172 _DifferenceType* __b = new _DifferenceType[__m]; 177 for (_SeqNumber __i = 0; __i < __m; __i++) 190 for (_SeqNumber __i = 0; __i < __m; __i++) 205 for (_SeqNumber __i = 0; __i < __m; __i++) [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| D | bmi2intrin.h | 82 unsigned long __m = __M; in _pdep_u64() local 93 while (__m != 0) in _pdep_u64() 95 __c = __builtin_clzl (__m); in _pdep_u64() 97 __m ^= (__mask >> __c); in _pdep_u64() 110 unsigned long __m = __M; in _pext_u64() local 124 __c = __builtin_clzl (__m); in _pext_u64() 126 __m ^= (__mask >> __c); in _pext_u64() 139 while (__m != 0) in _pext_u64() 142 __c = __builtin_clzl (__m); in _pext_u64() 144 __m ^= (__mask >> __c); in _pext_u64()
|
| D | mmintrin.h | 618 _mm_sll_si64 (__m64 __m, __m64 __count) in _mm_sll_si64() argument 620 return (__m << __count); in _mm_sll_si64() 624 _m_psllq (__m64 __m, __m64 __count) in _m_psllq() argument 626 return _mm_sll_si64 (__m, __count); in _m_psllq() 630 _mm_slli_si64 (__m64 __m, const int __count) in _mm_slli_si64() argument 632 return (__m << __count); in _mm_slli_si64() 636 _m_psllqi (__m64 __m, const int __count) in _m_psllqi() argument 638 return _mm_slli_si64 (__m, __count); in _m_psllqi() 643 _mm_srl_si64 (__m64 __m, __m64 __count) in _mm_srl_si64() argument 645 return (__m >> __count); in _mm_srl_si64() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/generic/ |
| D | ctype_members.cc | 57 ctype<wchar_t>::_M_convert_to_wmask(const mask __m) const throw() in _M_convert_to_wmask() 60 switch (__m) in _M_convert_to_wmask() 98 if (__m == blank) in _M_convert_to_wmask() 138 do_is(mask __m, char_type __c) const in do_is() argument 145 if (__m & _M_bit[__bitcur] in do_is() 163 mask __m = 0; in do_is() local 166 __m |= _M_bit[__bitcur]; in do_is() 167 *__vec = __m; in do_is() 174 do_scan_is(mask __m, const wchar_t* __lo, const wchar_t* __hi) const in do_scan_is() argument 176 while (__lo < __hi && !this->do_is(__m, *__lo)) in do_scan_is() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/os/aix/ |
| D | ctype_inline.h | 43 is(mask __m, char __c) const in _GLIBCXX_VISIBILITY() 46 return _M_table[static_cast<unsigned char>(__c)] & __m; in _GLIBCXX_VISIBILITY() 49 return __OBJ_DATA((*__lc_ctype_ptr))->mask[static_cast<unsigned char>(__c)] & __m; in _GLIBCXX_VISIBILITY() 51 return __OBJ_DATA(__lc_ctype)->mask[static_cast<unsigned char>(__c)] & __m; in _GLIBCXX_VISIBILITY() 74 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 76 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY() 83 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 85 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/locale/gnu/ |
| D | ctype_members.cc | 59 ctype<wchar_t>::_M_convert_to_wmask(const mask __m) const throw() in _M_convert_to_wmask() 62 switch (__m) in _M_convert_to_wmask() 138 do_is(mask __m, wchar_t __c) const in do_is() argument 146 if (__m == _M_bit[5]) in do_is() 153 if (__m & _M_bit[__bitcur]) in do_is() 160 else if (__m == _M_bit[__bitcur]) in do_is() 175 mask __m = 0; in do_is() local 178 __m |= _M_bit[__bitcur]; in do_is() 179 *__vec = __m; in do_is() 186 do_scan_is(mask __m, const wchar_t* __lo, const wchar_t* __hi) const in do_scan_is() argument [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/os/bsd/netbsd/ |
| D | ctype_inline.h | 43 is(mask __m, char __c) const in _GLIBCXX_VISIBILITY() 44 { return _M_table[(unsigned char)(__c)] & __m; } in _GLIBCXX_VISIBILITY() 57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 59 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY() 66 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 68 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/os/qnx/qnx6.1/ |
| D | ctype_inline.h | 43 is(mask __m, char __c) const in _GLIBCXX_VISIBILITY() 44 { return _M_table[(unsigned char)(__c)] & __m; } in _GLIBCXX_VISIBILITY() 57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 59 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY() 66 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 68 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/os/tpf/ |
| D | ctype_inline.h | 43 is(mask __m, char __c) const in _GLIBCXX_VISIBILITY() 44 { return _M_table[static_cast<unsigned char>(__c)] & __m; } in _GLIBCXX_VISIBILITY() 57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 60 && !(_M_table[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY() 67 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 70 && (_M_table[static_cast<unsigned char>(*__low)] & __m) != 0) in _GLIBCXX_VISIBILITY()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/os/mingw32/ |
| D | ctype_inline.h | 43 is(mask __m, char __c) const in _GLIBCXX_VISIBILITY() 44 { return (_M_table[static_cast<unsigned char>(__c) ] & __m); } in _GLIBCXX_VISIBILITY() 58 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 60 while (__low < __high && !this->is(__m, *__low)) in _GLIBCXX_VISIBILITY() 67 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 69 while (__low < __high && this->is(__m, *__low) != 0) in _GLIBCXX_VISIBILITY()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/os/uclibc/ |
| D | ctype_inline.h | 43 is(mask __m, char __c) const in _GLIBCXX_VISIBILITY() 44 { return _M_table[static_cast<unsigned char>(__c)] & __m; } in _GLIBCXX_VISIBILITY() 57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 60 && !(_M_table[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY() 67 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 70 && (_M_table[static_cast<unsigned char>(*__low)] & __m) != 0) in _GLIBCXX_VISIBILITY()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/os/solaris/ |
| D | ctype_inline.h | 43 is(mask __m, char __c) const in _GLIBCXX_VISIBILITY() 44 { return _M_table[static_cast<unsigned char>(__c)] & __m; } in _GLIBCXX_VISIBILITY() 57 scan_is(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 60 && !(_M_table[static_cast<unsigned char>(*__low)] & __m)) in _GLIBCXX_VISIBILITY() 67 scan_not(mask __m, const char* __low, const char* __high) const in _GLIBCXX_VISIBILITY() 70 && (_M_table[static_cast<unsigned char>(*__low)] & __m) != 0) in _GLIBCXX_VISIBILITY()
|