| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/decimal/ |
| D | decimal.h | 101 inline long long decimal32_to_long_long(decimal32 __d) in _GLIBCXX_VISIBILITY() 102 { return (long long)__d.__getval(); } in _GLIBCXX_VISIBILITY() 104 inline long long decimal64_to_long_long(decimal64 __d) in _GLIBCXX_VISIBILITY() 105 { return (long long)__d.__getval(); } in _GLIBCXX_VISIBILITY() 107 inline long long decimal128_to_long_long(decimal128 __d) in _GLIBCXX_VISIBILITY() 108 { return (long long)__d.__getval(); } in _GLIBCXX_VISIBILITY() 110 inline long long decimal_to_long_long(decimal32 __d) in _GLIBCXX_VISIBILITY() 111 { return (long long)__d.__getval(); } in _GLIBCXX_VISIBILITY() 113 inline long long decimal_to_long_long(decimal64 __d) in _GLIBCXX_VISIBILITY() 114 { return (long long)__d.__getval(); } in _GLIBCXX_VISIBILITY() [all …]
|
| D | decimal | 73 long long decimal32_to_long_long(decimal32 __d); 74 long long decimal64_to_long_long(decimal64 __d); 75 long long decimal128_to_long_long(decimal128 __d); 76 long long decimal_to_long_long(decimal32 __d); 77 long long decimal_to_long_long(decimal64 __d); 78 long long decimal_to_long_long(decimal128 __d); 81 float decimal32_to_float(decimal32 __d); 82 float decimal64_to_float(decimal64 __d); 83 float decimal128_to_float(decimal128 __d); 84 float decimal_to_float(decimal32 __d); [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/decimal/ |
| D | decimal.h | 101 inline long long decimal32_to_long_long(decimal32 __d) in _GLIBCXX_VISIBILITY() 102 { return (long long)__d.__getval(); } in _GLIBCXX_VISIBILITY() 104 inline long long decimal64_to_long_long(decimal64 __d) in _GLIBCXX_VISIBILITY() 105 { return (long long)__d.__getval(); } in _GLIBCXX_VISIBILITY() 107 inline long long decimal128_to_long_long(decimal128 __d) in _GLIBCXX_VISIBILITY() 108 { return (long long)__d.__getval(); } in _GLIBCXX_VISIBILITY() 110 inline long long decimal_to_long_long(decimal32 __d) in _GLIBCXX_VISIBILITY() 111 { return (long long)__d.__getval(); } in _GLIBCXX_VISIBILITY() 113 inline long long decimal_to_long_long(decimal64 __d) in _GLIBCXX_VISIBILITY() 114 { return (long long)__d.__getval(); } in _GLIBCXX_VISIBILITY() [all …]
|
| D | decimal | 73 long long decimal32_to_long_long(decimal32 __d); 74 long long decimal64_to_long_long(decimal64 __d); 75 long long decimal128_to_long_long(decimal128 __d); 76 long long decimal_to_long_long(decimal32 __d); 77 long long decimal_to_long_long(decimal64 __d); 78 long long decimal_to_long_long(decimal128 __d); 81 float decimal32_to_float(decimal32 __d); 82 float decimal64_to_float(decimal64 __d); 83 float decimal128_to_float(decimal128 __d); 84 float decimal_to_float(decimal32 __d); [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++11/ |
| D | snprintf_lite.cc | 102 char *__d = __buf; in __snprintf_lite() local 104 const char *const __limit = __d + __bufsize - 1; // Leave space for NUL. in __snprintf_lite() 106 while (__s[0] != '\0' && __d < __limit) in __snprintf_lite() 120 while (__v[0] != '\0' && __d < __limit) in __snprintf_lite() 121 *__d++ = *__v++; in __snprintf_lite() 125 __throw_insufficient_space(__buf, __d); in __snprintf_lite() 134 const int __len = __concat_size_t(__d, __limit - __d, in __snprintf_lite() 137 __d += __len; in __snprintf_lite() 140 __throw_insufficient_space(__buf, __d); in __snprintf_lite() 148 *__d++ = *__s++; in __snprintf_lite() [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/ |
| D | vstring_util.h | 104 _S_copy(_CharT* __d, const _CharT* __s, size_type __n) in _GLIBCXX_VISIBILITY() 107 traits_type::assign(*__d, *__s); in _GLIBCXX_VISIBILITY() 109 traits_type::copy(__d, __s, __n); in _GLIBCXX_VISIBILITY() 113 _S_move(_CharT* __d, const _CharT* __s, size_type __n) in _GLIBCXX_VISIBILITY() 116 traits_type::assign(*__d, *__s); in _GLIBCXX_VISIBILITY() 118 traits_type::move(__d, __s, __n); in _GLIBCXX_VISIBILITY() 122 _S_assign(_CharT* __d, size_type __n, _CharT __c) in _GLIBCXX_VISIBILITY() 125 traits_type::assign(*__d, __c); in _GLIBCXX_VISIBILITY() 127 traits_type::assign(__d, __n, __c); in _GLIBCXX_VISIBILITY() 169 const difference_type __d = difference_type(__n1 - __n2); in _GLIBCXX_VISIBILITY() local [all …]
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/ext/ |
| D | vstring_util.h | 105 _S_copy(_CharT* __d, const _CharT* __s, size_type __n) in _GLIBCXX_VISIBILITY() 108 traits_type::assign(*__d, *__s); in _GLIBCXX_VISIBILITY() 110 traits_type::copy(__d, __s, __n); in _GLIBCXX_VISIBILITY() 114 _S_move(_CharT* __d, const _CharT* __s, size_type __n) in _GLIBCXX_VISIBILITY() 117 traits_type::assign(*__d, *__s); in _GLIBCXX_VISIBILITY() 119 traits_type::move(__d, __s, __n); in _GLIBCXX_VISIBILITY() 123 _S_assign(_CharT* __d, size_type __n, _CharT __c) in _GLIBCXX_VISIBILITY() 126 traits_type::assign(*__d, __c); in _GLIBCXX_VISIBILITY() 128 traits_type::assign(__d, __n, __c); in _GLIBCXX_VISIBILITY() 170 const difference_type __d = difference_type(__n1 - __n2); in _GLIBCXX_VISIBILITY() local [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/parallel/ |
| D | set_operations.h | 79 _M_invoke(_IIter __a, _IIter __b, _IIter __c, _IIter __d, in _M_invoke() 82 while (__a != __b && __c != __d) in _M_invoke() 102 return std::copy(__c, __d, std::copy(__a, __b, __r)); in _M_invoke() 106 __count(_IIter __a, _IIter __b, _IIter __c, _IIter __d) const in __count() 110 while (__a != __b && __c != __d) in __count() 129 return __counter + (__b - __a) + (__d - __c); in __count() 133 __first_empty(_IIter __c, _IIter __d, _OutputIterator __out) const in __first_empty() 134 { return std::copy(__c, __d, __out); } in __first_empty() 156 _M_invoke(_IIter __a, _IIter __b, _IIter __c, _IIter __d, in _M_invoke() 159 while (__a != __b && __c != __d) in _M_invoke() [all …]
|
| D | random_shuffle.h | 130 _DRSSorterPU<_RAIter, _RandomNumberGenerator>* __d = &__pus[__iam]; in __parallel_random_shuffle_drs_pu() local 131 _DRandomShufflingGlobalData<_RAIter>* __sd = __d->_M_sd; in __parallel_random_shuffle_drs_pu() 139 _ValueType** __temporaries = new _ValueType*[__d->_M_num_threads]; in __parallel_random_shuffle_drs_pu() 146 _RandomNumber __rng(__d->_M_seed); in __parallel_random_shuffle_drs_pu() 170 + __d->_M_num_threads + 1, in __parallel_random_shuffle_drs_pu() 177 for (_BinIndex __s = 0; __s < __d->_M_bins_begin; ++__s) in __parallel_random_shuffle_drs_pu() 178 __global_offset += __sd->_M_dist[__s + 1][__d->_M_num_threads]; in __parallel_random_shuffle_drs_pu() 182 for (_BinIndex __s = __d->_M_bins_begin; __s < __d->__bins_end; ++__s) in __parallel_random_shuffle_drs_pu() 184 for (int __t = 0; __t < __d->_M_num_threads + 1; ++__t) in __parallel_random_shuffle_drs_pu() 186 __offset = __sd->_M_dist[__s + 1][__d->_M_num_threads]; in __parallel_random_shuffle_drs_pu() [all …]
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/parallel/ |
| D | set_operations.h | 79 _M_invoke(_IIter __a, _IIter __b, _IIter __c, _IIter __d, in _M_invoke() 82 while (__a != __b && __c != __d) in _M_invoke() 102 return std::copy(__c, __d, std::copy(__a, __b, __r)); in _M_invoke() 106 __count(_IIter __a, _IIter __b, _IIter __c, _IIter __d) const in __count() 110 while (__a != __b && __c != __d) in __count() 129 return __counter + (__b - __a) + (__d - __c); in __count() 133 __first_empty(_IIter __c, _IIter __d, _OutputIterator __out) const in __first_empty() 134 { return std::copy(__c, __d, __out); } in __first_empty() 156 _M_invoke(_IIter __a, _IIter __b, _IIter __c, _IIter __d, in _M_invoke() 159 while (__a != __b && __c != __d) in _M_invoke() [all …]
|
| D | random_shuffle.h | 130 _DRSSorterPU<_RAIter, _RandomNumberGenerator>* __d = &__pus[__iam]; in __parallel_random_shuffle_drs_pu() local 131 _DRandomShufflingGlobalData<_RAIter>* __sd = __d->_M_sd; in __parallel_random_shuffle_drs_pu() 139 _ValueType** __temporaries = new _ValueType*[__d->_M_num_threads]; in __parallel_random_shuffle_drs_pu() 146 _RandomNumber __rng(__d->_M_seed); in __parallel_random_shuffle_drs_pu() 170 + __d->_M_num_threads + 1, in __parallel_random_shuffle_drs_pu() 177 for (_BinIndex __s = 0; __s < __d->_M_bins_begin; ++__s) in __parallel_random_shuffle_drs_pu() 178 __global_offset += __sd->_M_dist[__s + 1][__d->_M_num_threads]; in __parallel_random_shuffle_drs_pu() 182 for (_BinIndex __s = __d->_M_bins_begin; __s < __d->__bins_end; ++__s) in __parallel_random_shuffle_drs_pu() 184 for (int __t = 0; __t < __d->_M_num_threads + 1; ++__t) in __parallel_random_shuffle_drs_pu() 186 __offset = __sd->_M_dist[__s + 1][__d->_M_num_threads]; in __parallel_random_shuffle_drs_pu() [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/ |
| D | chrono | 125 __cast(const duration<_Rep, _Period>& __d) 128 return _ToDur(static_cast<__to_rep>(static_cast<_CR>(__d.count()) 139 __cast(const duration<_Rep, _Period>& __d) 142 return _ToDur(static_cast<__to_rep>(__d.count())); 151 __cast(const duration<_Rep, _Period>& __d) 155 static_cast<_CR>(__d.count()) / static_cast<_CR>(_CF::den))); 164 __cast(const duration<_Rep, _Period>& __d) 168 static_cast<_CR>(__d.count()) * static_cast<_CR>(_CF::num))); 193 duration_cast(const duration<_Rep, _Period>& __d) 202 return __dc::__cast(__d); [all …]
|
| D | ratio | 163 // This version assumes that the high bit of __d is 1. 164 template<uintmax_t __n1, uintmax_t __n0, uintmax_t __d> 168 static_assert(__d >= (uintmax_t(1) << (sizeof(intmax_t) * 8 - 1)), 170 static_assert(__n1 < __d, "Internal library error"); 172 static constexpr uintmax_t __d1 = __d / __c; 173 static constexpr uintmax_t __d0 = __d % __c; 179 static constexpr uintmax_t __r1z = __r1y + __d; 181 = ((__r1y < __m) ? ((__r1z >= __d) && (__r1z < __m)) 182 ? (__r1z + __d) : __r1z : __r1y) - __m; 185 ? ((__r1z >= __d) && (__r1z < __m)) ? 2 : 1 : 0); [all …]
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/ |
| D | chrono | 112 __cast(const duration<_Rep, _Period>& __d) 115 return _ToDur(static_cast<__to_rep>(static_cast<_CR>(__d.count()) 126 __cast(const duration<_Rep, _Period>& __d) 129 return _ToDur(static_cast<__to_rep>(__d.count())); 138 __cast(const duration<_Rep, _Period>& __d) 142 static_cast<_CR>(__d.count()) / static_cast<_CR>(_CF::den))); 151 __cast(const duration<_Rep, _Period>& __d) 155 static_cast<_CR>(__d.count()) * static_cast<_CR>(_CF::num))); 173 duration_cast(const duration<_Rep, _Period>& __d) 183 return __dc::__cast(__d); [all …]
|
| D | ratio | 166 // This version assumes that the high bit of __d is 1. 167 template<uintmax_t __n1, uintmax_t __n0, uintmax_t __d> 171 static_assert(__d >= (uintmax_t(1) << (sizeof(intmax_t) * 8 - 1)), 173 static_assert(__n1 < __d, "Internal library error"); 175 static constexpr uintmax_t __d1 = __d / __c; 176 static constexpr uintmax_t __d0 = __d % __c; 182 static constexpr uintmax_t __r1z = __r1y + __d; 184 = ((__r1y < __m) ? ((__r1z >= __d) && (__r1z < __m)) 185 ? (__r1z + __d) : __r1z : __r1y) - __m; 188 ? ((__r1z >= __d) && (__r1z < __m)) ? 2 : 1 : 0); [all …]
|
| D | atomic | 348 operator+=(ptrdiff_t __d) noexcept 349 { return _M_b.operator+=(__d); } 352 operator+=(ptrdiff_t __d) volatile noexcept 353 { return _M_b.operator+=(__d); } 356 operator-=(ptrdiff_t __d) noexcept 357 { return _M_b.operator-=(__d); } 360 operator-=(ptrdiff_t __d) volatile noexcept 361 { return _M_b.operator-=(__d); } 454 fetch_add(ptrdiff_t __d, 456 { return _M_b.fetch_add(__d, __m); } [all …]
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr1/ |
| D | modified_bessel_func.tcc | 121 _Tp __d = _Tp(0); in __bessel_ik() local 127 __d = _Tp(1) / (__b + __d); in __bessel_ik() 129 const _Tp __del = __c * __d; in __bessel_ik() 158 _Tp __d = -std::log(__x2); in __bessel_ik() local 159 _Tp __e = __mu * __d; in __bessel_ik() 165 * (__gam1 * std::cosh(__e) + __gam2 * __fact2 * __d); in __bessel_ik() 171 __d = __x2 * __x2; in __bessel_ik() 177 __c *= __d / __i; in __bessel_ik() 196 _Tp __d = _Tp(1) / __b; in __bessel_ik() local 197 _Tp __delh = __d; in __bessel_ik() [all …]
|
| D | bessel_function.tcc | 176 _Tp __d = _Tp(0); in __bessel_jn() local 182 __d = __b - __d; in __bessel_jn() 183 if (std::abs(__d) < __fp_min) in __bessel_jn() 184 __d = __fp_min; in __bessel_jn() 188 __d = _Tp(1) / __d; in __bessel_jn() 189 const _Tp __del = __c * __d; in __bessel_jn() 191 if (__d < _Tp(0)) in __bessel_jn() 221 _Tp __d = -std::log(__x2); in __bessel_jn() local 222 _Tp __e = __mu * __d; in __bessel_jn() 228 * __fact * (__gam1 * std::cosh(__e) + __gam2 * __fact2 * __d); in __bessel_jn() [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/ |
| D | atomic_base.h | 574 _M_type_size(ptrdiff_t __d) const { return __d * sizeof(_PTp); } in _GLIBCXX_VISIBILITY() 577 _M_type_size(ptrdiff_t __d) const volatile { return __d * sizeof(_PTp); } in _GLIBCXX_VISIBILITY() 646 operator+=(ptrdiff_t __d) noexcept in _GLIBCXX_VISIBILITY() 647 { return __atomic_add_fetch(&_M_p, _M_type_size(__d), in _GLIBCXX_VISIBILITY() 651 operator+=(ptrdiff_t __d) volatile noexcept in _GLIBCXX_VISIBILITY() 652 { return __atomic_add_fetch(&_M_p, _M_type_size(__d), in _GLIBCXX_VISIBILITY() 656 operator-=(ptrdiff_t __d) noexcept in _GLIBCXX_VISIBILITY() 657 { return __atomic_sub_fetch(&_M_p, _M_type_size(__d), in _GLIBCXX_VISIBILITY() 661 operator-=(ptrdiff_t __d) volatile noexcept in _GLIBCXX_VISIBILITY() 662 { return __atomic_sub_fetch(&_M_p, _M_type_size(__d), in _GLIBCXX_VISIBILITY() [all …]
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/ |
| D | atomic_base.h | 632 _M_type_size(ptrdiff_t __d) { return __d * sizeof(_PTp); } in _GLIBCXX_VISIBILITY() 635 _M_type_size(ptrdiff_t __d) volatile { return __d * sizeof(_PTp); } in _GLIBCXX_VISIBILITY() 704 operator+=(ptrdiff_t __d) noexcept in _GLIBCXX_VISIBILITY() 705 { return __atomic_add_fetch(&_M_p, _M_type_size(__d), in _GLIBCXX_VISIBILITY() 709 operator+=(ptrdiff_t __d) volatile noexcept in _GLIBCXX_VISIBILITY() 710 { return __atomic_add_fetch(&_M_p, _M_type_size(__d), in _GLIBCXX_VISIBILITY() 714 operator-=(ptrdiff_t __d) noexcept in _GLIBCXX_VISIBILITY() 715 { return __atomic_sub_fetch(&_M_p, _M_type_size(__d), in _GLIBCXX_VISIBILITY() 719 operator-=(ptrdiff_t __d) volatile noexcept in _GLIBCXX_VISIBILITY() 720 { return __atomic_sub_fetch(&_M_p, _M_type_size(__d), in _GLIBCXX_VISIBILITY() [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr1/ |
| D | modified_bessel_func.tcc | 125 _Tp __d = _Tp(0); in __bessel_ik() local 131 __d = _Tp(1) / (__b + __d); in __bessel_ik() 133 const _Tp __del = __c * __d; in __bessel_ik() 162 _Tp __d = -std::log(__x2); in __bessel_ik() local 163 _Tp __e = __mu * __d; in __bessel_ik() 169 * (__gam1 * std::cosh(__e) + __gam2 * __fact2 * __d); in __bessel_ik() 175 __d = __x2 * __x2; in __bessel_ik() 181 __c *= __d / __i; in __bessel_ik() 200 _Tp __d = _Tp(1) / __b; in __bessel_ik() local 201 _Tp __delh = __d; in __bessel_ik() [all …]
|
| D | bessel_function.tcc | 182 _Tp __d = _Tp(0); in __bessel_jn() local 188 __d = __b - __d; in __bessel_jn() 189 if (std::abs(__d) < __fp_min) in __bessel_jn() 190 __d = __fp_min; in __bessel_jn() 194 __d = _Tp(1) / __d; in __bessel_jn() 195 const _Tp __del = __c * __d; in __bessel_jn() 197 if (__d < _Tp(0)) in __bessel_jn() 227 _Tp __d = -std::log(__x2); in __bessel_jn() local 228 _Tp __e = __mu * __d; in __bessel_jn() 234 * __fact * (__gam1 * std::cosh(__e) + __gam2 * __fact2 * __d); in __bessel_jn() [all …]
|
| D | hypergeometric.tcc | 442 const _Tp __d = __c - __a - __b; in __hyperg_reflect() local 443 const int __intd = std::floor(__d + _Tp(0.5L)); in __hyperg_reflect() 447 const bool __d_integer = (std::abs(__d - __intd) < __toler); in __hyperg_reflect() 452 const _Tp __ad = std::abs(__d); in __hyperg_reflect() 456 if (__d >= _Tp(0)) in __hyperg_reflect() 458 __d1 = __d; in __hyperg_reflect() 464 __d2 = __d; in __hyperg_reflect() 633 const _Tp __sgn_gd = __log_gamma_sign(__d); in __hyperg_reflect() 634 const _Tp __ln_gd = __log_gamma(__d); in __hyperg_reflect() 635 const _Tp __sgn_gmd = __log_gamma_sign(-__d); in __hyperg_reflect() [all …]
|
| /dragonfly/contrib/gcc-4.7/gcc/config/i386/ |
| HD | cross-stdarg.h | 43 #define __ms_va_copy(__d,__s) __builtin_ms_va_copy(__d,__s) argument 48 #define __sysv_va_copy(__d,__s) __builtin_sysv_va_copy(__d,__s) argument
|
| /dragonfly/contrib/gcc-8.0/gcc/config/i386/ |
| HD | cross-stdarg.h | 42 #define __ms_va_copy(__d,__s) __builtin_ms_va_copy(__d,__s) argument 47 #define __sysv_va_copy(__d,__s) __builtin_sysv_va_copy(__d,__s) argument
|