| /NextBSD/lib/msun/powerpc/ |
| HD | fenv.h | 98 double __d; member 112 __mffs(&__r.__d); in feclearexcept() 114 __mtfsf(__r.__d); in feclearexcept() 123 __mffs(&__r.__d); in fegetexceptflag() 135 __mffs(&__r.__d); in fesetexceptflag() 138 __mtfsf(__r.__d); in fesetexceptflag() 149 __mffs(&__r.__d); in feraiseexcept() 151 __mtfsf(__r.__d); in feraiseexcept() 160 __mffs(&__r.__d); in fetestexcept() 169 __mffs(&__r.__d); in fegetround() [all …]
|
| /NextBSD/contrib/compiler-rt/lib/builtins/ |
| HD | divsc3.c | 21 __divsc3(float __a, float __b, float __c, float __d) in __divsc3() argument 24 float __logbw = crt_logbf(crt_fmaxf(crt_fabsf(__c), crt_fabsf(__d))); in __divsc3() 29 __d = crt_scalbnf(__d, -__ilogbw); in __divsc3() 31 float __denom = __c * __c + __d * __d; in __divsc3() 33 __real__ z = crt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw); in __divsc3() 34 __imag__ z = crt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw); in __divsc3() 43 crt_isfinite(__c) && crt_isfinite(__d)) in __divsc3() 47 __real__ z = CRT_INFINITY * (__a * __c + __b * __d); in __divsc3() 48 __imag__ z = CRT_INFINITY * (__b * __c - __a * __d); in __divsc3() 54 __d = crt_copysignf(crt_isinf(__d) ? 1 : 0, __d); in __divsc3() [all …]
|
| HD | divdc3.c | 21 __divdc3(double __a, double __b, double __c, double __d) in __divdc3() argument 24 double __logbw = crt_logb(crt_fmax(crt_fabs(__c), crt_fabs(__d))); in __divdc3() 29 __d = crt_scalbn(__d, -__ilogbw); in __divdc3() 31 double __denom = __c * __c + __d * __d; in __divdc3() 33 __real__ z = crt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw); in __divdc3() 34 __imag__ z = crt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw); in __divdc3() 43 crt_isfinite(__c) && crt_isfinite(__d)) in __divdc3() 47 __real__ z = CRT_INFINITY * (__a * __c + __b * __d); in __divdc3() 48 __imag__ z = CRT_INFINITY * (__b * __c - __a * __d); in __divdc3() 54 __d = crt_copysign(crt_isinf(__d) ? 1.0 : 0.0, __d); in __divdc3() [all …]
|
| HD | divxc3.c | 22 __divxc3(long double __a, long double __b, long double __c, long double __d) in __divxc3() argument 25 long double __logbw = crt_logbl(crt_fmaxl(crt_fabsl(__c), crt_fabsl(__d))); in __divxc3() 30 __d = crt_scalbnl(__d, -__ilogbw); in __divxc3() 32 long double __denom = __c * __c + __d * __d; in __divxc3() 34 __real__ z = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw); in __divxc3() 35 __imag__ z = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw); in __divxc3() 44 crt_isfinite(__c) && crt_isfinite(__d)) in __divxc3() 48 __real__ z = CRT_INFINITY * (__a * __c + __b * __d); in __divxc3() 49 __imag__ z = CRT_INFINITY * (__b * __c - __a * __d); in __divxc3() 55 __d = crt_copysignl(crt_isinf(__d) ? 1 : 0, __d); in __divxc3() [all …]
|
| HD | mulsc3.c | 21 __mulsc3(float __a, float __b, float __c, float __d) in __mulsc3() argument 24 float __bd = __b * __d; in __mulsc3() 25 float __ad = __a * __d; in __mulsc3() 39 if (crt_isnan(__d)) in __mulsc3() 40 __d = crt_copysignf(0, __d); in __mulsc3() 43 if (crt_isinf(__c) || crt_isinf(__d)) in __mulsc3() 46 __d = crt_copysignf(crt_isinf(__d) ? 1 : 0, __d); in __mulsc3() 62 if (crt_isnan(__d)) in __mulsc3() 63 __d = crt_copysignf(0, __d); in __mulsc3() 68 __real__ z = CRT_INFINITY * (__a * __c - __b * __d); in __mulsc3() [all …]
|
| HD | muldc3.c | 21 __muldc3(double __a, double __b, double __c, double __d) in __muldc3() argument 24 double __bd = __b * __d; in __muldc3() 25 double __ad = __a * __d; in __muldc3() 39 if (crt_isnan(__d)) in __muldc3() 40 __d = crt_copysign(0, __d); in __muldc3() 43 if (crt_isinf(__c) || crt_isinf(__d)) in __muldc3() 46 __d = crt_copysign(crt_isinf(__d) ? 1 : 0, __d); in __muldc3() 62 if (crt_isnan(__d)) in __muldc3() 63 __d = crt_copysign(0, __d); in __muldc3() 68 __real__ z = CRT_INFINITY * (__a * __c - __b * __d); in __muldc3() [all …]
|
| HD | mulxc3.c | 23 __mulxc3(long double __a, long double __b, long double __c, long double __d) in __mulxc3() argument 26 long double __bd = __b * __d; in __mulxc3() 27 long double __ad = __a * __d; in __mulxc3() 41 if (crt_isnan(__d)) in __mulxc3() 42 __d = crt_copysignl(0, __d); in __mulxc3() 45 if (crt_isinf(__c) || crt_isinf(__d)) in __mulxc3() 48 __d = crt_copysignl(crt_isinf(__d) ? 1 : 0, __d); in __mulxc3() 64 if (crt_isnan(__d)) in __mulxc3() 65 __d = crt_copysignl(0, __d); in __mulxc3() 70 __real__ z = CRT_INFINITY * (__a * __c - __b * __d); in __mulxc3() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/lib/Headers/ |
| HD | altivec.h | 5727 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm() local 5729 __d = vec_xor(__c, __d); in vec_perm() 5731 (vector int)__a, __d); in vec_perm() 5742 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm() local 5744 __d = vec_xor(__c, __d); in vec_perm() 5746 (vector int)__b, (vector int)__a, __d); in vec_perm() 5757 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm() local 5759 __d = vec_xor(__c, __d); in vec_perm() 5761 (vector int)__a, __d); in vec_perm() 5772 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm() local [all …]
|
| HD | avxintrin.h | 720 double __d = *__a; in _mm256_broadcast_sd() local 721 return (__m256d)(__v4df){ __d, __d, __d, __d }; in _mm256_broadcast_sd() 904 _mm256_set_pd(double __a, double __b, double __c, double __d) in _mm256_set_pd() argument 906 return (__m256d){ __d, __c, __b, __a }; in _mm256_set_pd() 910 _mm256_set_ps(float __a, float __b, float __c, float __d, in _mm256_set_ps() argument 913 return (__m256){ __h, __g, __f, __e, __d, __c, __b, __a }; in _mm256_set_ps() 952 _mm256_set_epi64x(long long __a, long long __b, long long __c, long long __d) in _mm256_set_epi64x() argument 954 return (__m256i)(__v4di){ __d, __c, __b, __a }; in _mm256_set_epi64x() 959 _mm256_setr_pd(double __a, double __b, double __c, double __d) in _mm256_setr_pd() argument 961 return (__m256d){ __a, __b, __c, __d }; in _mm256_setr_pd() [all …]
|
| /NextBSD/contrib/libstdc++/include/ext/ |
| D | vstring_util.h | 112 _S_copy(_CharT* __d, const _CharT* __s, size_type __n) in _S_copy() 115 traits_type::assign(*__d, *__s); in _S_copy() 117 traits_type::copy(__d, __s, __n); in _S_copy() 121 _S_move(_CharT* __d, const _CharT* __s, size_type __n) in _S_move() 124 traits_type::assign(*__d, *__s); in _S_move() 126 traits_type::move(__d, __s, __n); in _S_move() 130 _S_assign(_CharT* __d, size_type __n, _CharT __c) in _S_assign() 133 traits_type::assign(*__d, __c); in _S_assign() 135 traits_type::assign(__d, __n, __c); in _S_assign()
|
| /NextBSD/contrib/libc++/include/ |
| D | atomic | 838 void store(_Tp __d, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT 839 {__c11_atomic_store(&__a_, __d, __m);} 841 void store(_Tp __d, memory_order __m = memory_order_seq_cst) _NOEXCEPT 842 {__c11_atomic_store(&__a_, __d, __m);} 854 _Tp exchange(_Tp __d, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT 855 {return __c11_atomic_exchange(&__a_, __d, __m);} 857 _Tp exchange(_Tp __d, memory_order __m = memory_order_seq_cst) _NOEXCEPT 858 {return __c11_atomic_exchange(&__a_, __d, __m);} 860 bool compare_exchange_weak(_Tp& __e, _Tp __d, 862 {return __c11_atomic_compare_exchange_weak(&__a_, &__e, __d, __s, __f);} [all …]
|
| D | __mutex_base | 126 unique_lock(mutex_type& __m, const chrono::duration<_Rep, _Period>& __d) 127 : __m_(&__m), __owns_(__m.try_lock_for(__d)) {} 163 bool try_lock_for(const chrono::duration<_Rep, _Period>& __d); 220 unique_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d) 226 __owns_ = __m_->try_lock_for(__d); 305 const chrono::duration<_Rep, _Period>& __d); 310 const chrono::duration<_Rep, _Period>& __d, 329 __ceil(chrono::duration<_Rep, _Period> __d) 332 _To __r = duration_cast<_To>(__d); 333 if (__r < __d) [all …]
|
| D | __split_buffer | 469 difference_type __d = __end_cap() - __end_; 470 __d = (__d + 1) / 2; 471 __begin_ = _VSTD::move_backward(__begin_, __end_, __end_ + __d); 472 __end_ += __d; 500 difference_type __d = __end_cap() - __end_; 501 __d = (__d + 1) / 2; 502 __begin_ = _VSTD::move_backward(__begin_, __end_, __end_ + __d); 503 __end_ += __d; 533 difference_type __d = __begin_ - __first_; 534 __d = (__d + 1) / 2; [all …]
|
| D | cwctype | 164 …BCPP_INLINE_VISIBILITY int __libcpp_iswctype(wint_t __w, wctype_t __d) {return iswctype(__w, __d);} 166 …BCPP_INLINE_VISIBILITY int iswctype(wint_t __w, wctype_t __d) {return __libcpp_iswctype(__w, __d);} 196 …LINE_VISIBILITY wint_t __libcpp_towctrans(wint_t __wc, wctype_t __d) {return towctrans(__wc, __d);} 198 …NLINE_VISIBILITY wint_t towctrans(wint_t __wc, wctype_t __d) {return __libcpp_towctrans(__wc, __d)…
|
| D | complex | 592 _Tp __d = __w.imag(); 594 _Tp __bd = __b * __d; 595 _Tp __ad = __a * __d; 608 if (isnan(__d)) 609 __d = copysign(_Tp(0), __d); 612 if (isinf(__c) || isinf(__d)) 615 __d = copysign(isinf(__d) ? _Tp(1) : _Tp(0), __d); 631 if (isnan(__d)) 632 __d = copysign(_Tp(0), __d); 637 __x = _Tp(INFINITY) * (__a * __c - __b * __d); [all …]
|
| D | condition_variable | 151 const chrono::duration<_Rep, _Period>& __d); 156 const chrono::duration<_Rep, _Period>& __d, 237 const chrono::duration<_Rep, _Period>& __d) 239 return wait_until(__lock, chrono::steady_clock::now() + __d); 246 const chrono::duration<_Rep, _Period>& __d, 249 return wait_until(__lock, chrono::steady_clock::now() + __d,
|
| D | chrono | 471 duration(const duration<_Rep2, _Period2>& __d, 479 : __rep_(_VSTD::chrono::duration_cast<duration>(__d).count()) {} 494 …_LIBCPP_INLINE_VISIBILITY duration& operator+=(const duration& __d) {__rep_ += __d.count(); return… 495 …_LIBCPP_INLINE_VISIBILITY duration& operator-=(const duration& __d) {__rep_ -= __d.count(); return… 654 operator*(const duration<_Rep1, _Period>& __d, const _Rep2& __s) 658 return _Cd(_Cd(__d).count() * static_cast<_Cr>(__s)); 669 operator*(const _Rep1& __s, const duration<_Rep2, _Period>& __d) 671 return __d * __s; 704 operator/(const duration<_Rep1, _Period>& __d, const _Rep2& __s) 708 return _Cd(_Cd(__d).count() / static_cast<_Cr>(__s)); [all …]
|
| /NextBSD/contrib/libstdc++/config/locale/generic/ |
| D | c_locale.cc | 62 double __d = strtod(__s, &__sanity); in _GLIBCXX_BEGIN_NAMESPACE() local 63 float __f = static_cast<float>(__d); in _GLIBCXX_BEGIN_NAMESPACE() 74 if (fabs(__d) > numeric_limits<float>::max()) in _GLIBCXX_BEGIN_NAMESPACE() 96 double __d = strtod(__s, &__sanity); in __convert_to_v() local 98 __v = __d; in __convert_to_v()
|
| /NextBSD/contrib/libstdc++/include/c_std/ |
| D | std_cstdlib.h | 180 div(long long __n, long long __d) 181 { lldiv_t __q; __q.quot = __n / __d; __q.rem = __n % __d; return __q; }
|
| /NextBSD/contrib/libstdc++/include/tr1/ |
| D | boost_shared_ptr.h | 241 _Sp_counted_base_impl(_Ptr __p, _Deleter __d) in _Sp_counted_base_impl() argument 242 : _M_ptr(__p), _M_del(__d) { } in _Sp_counted_base_impl() 272 __shared_count(_Ptr __p, _Deleter __d) : _M_pi(0) in __shared_count() argument 276 _M_pi = new _Sp_counted_base_impl<_Ptr, _Deleter, _Lp>(__p, __d); in __shared_count() 280 __d(__p); // Call _Deleter on __p. in __shared_count() 543 __shared_ptr(_Tp1* __p, _Deleter __d) in __shared_ptr() argument 544 : _M_ptr(__p), _M_refcount(__p, __d) in __shared_ptr() 651 reset(_Tp1* __p, _Deleter __d) in reset() argument 652 { __shared_ptr(__p, __d).swap(*this); } in reset() 985 shared_ptr(_Tp1* __p, _Deleter __d) in shared_ptr() argument [all …]
|
| /NextBSD/contrib/libstdc++/config/locale/gnu/ |
| D | c_locale.cc | 66 double __d = __strtod_l(__s, &__sanity, __cloc); in __convert_to_v() local 68 __v = __d; in __convert_to_v()
|
| /NextBSD/contrib/bmake/ |
| HD | make.h | 509 } __d; \ 510 __d.__cp = ptr, __d.__p; })
|
| /NextBSD/contrib/libstdc++/include/bits/ |
| D | stl_iterator_base_funcs.h | 176 typename iterator_traits<_InputIterator>::difference_type __d = __n; in advance() local 177 std::__advance(__i, __d, std::__iterator_category(__i)); in advance()
|
| /NextBSD/contrib/libstdc++/src/ |
| D | codecvt.cc | 110 size_t __d = static_cast<size_t>(__end - __from); in do_length() local 111 return std::min(__max, __d); in do_length()
|
| /NextBSD/contrib/libc++/include/experimental/ |
| D | dynarray | 164 dynarray(const dynarray& __d); 174 // dynarray(allocator_arg_t, const _Alloc& __alloc, const dynarray& __d); 255 dynarray<_Tp>::dynarray(const dynarray& __d) : dynarray () 257 size_t sz = __d.size(); 260 auto src = __d.begin();
|