Home
last modified time | relevance | path

Searched refs:__d (Results 1 – 25 of 48) sorted by relevance

12

/external/compiler-rt/lib/builtins/
Ddivtc3.c21 __divtc3(long double __a, long double __b, long double __c, long double __d) in __divtc3() argument
24 long double __logbw = crt_logbl(crt_fmaxl(crt_fabsl(__c), crt_fabsl(__d))); in __divtc3()
29 __d = crt_scalbnl(__d, -__ilogbw); in __divtc3()
31 long double __denom = __c * __c + __d * __d; in __divtc3()
33 __real__ z = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw); in __divtc3()
34 __imag__ z = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw); in __divtc3()
43 crt_isfinite(__c) && crt_isfinite(__d)) in __divtc3()
47 __real__ z = CRT_INFINITY * (__a * __c + __b * __d); in __divtc3()
48 __imag__ z = CRT_INFINITY * (__b * __c - __a * __d); in __divtc3()
54 __d = crt_copysignl(crt_isinf(__d) ? 1.0 : 0.0, __d); in __divtc3()
[all …]
Ddivxc3.c22 __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 COMPLEX_REAL(z) = crt_scalbnl((__a * __c + __b * __d) / __denom, -__ilogbw); in __divxc3()
35 COMPLEX_IMAGINARY(z) = crt_scalbnl((__b * __c - __a * __d) / __denom, -__ilogbw); in __divxc3()
44 crt_isfinite(__c) && crt_isfinite(__d)) in __divxc3()
48 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d); in __divxc3()
49 COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d); in __divxc3()
55 __d = crt_copysignl(crt_isinf(__d) ? 1 : 0, __d); in __divxc3()
[all …]
Ddivsc3.c21 __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 COMPLEX_REAL(z) = crt_scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw); in __divsc3()
34 COMPLEX_IMAGINARY(z) = crt_scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw); in __divsc3()
43 crt_isfinite(__c) && crt_isfinite(__d)) in __divsc3()
47 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d); in __divsc3()
48 COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d); in __divsc3()
54 __d = crt_copysignf(crt_isinf(__d) ? 1 : 0, __d); in __divsc3()
[all …]
Ddivdc3.c21 __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 COMPLEX_REAL(z) = crt_scalbn((__a * __c + __b * __d) / __denom, -__ilogbw); in __divdc3()
34 COMPLEX_IMAGINARY(z) = crt_scalbn((__b * __c - __a * __d) / __denom, -__ilogbw); in __divdc3()
43 crt_isfinite(__c) && crt_isfinite(__d)) in __divdc3()
47 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c + __b * __d); in __divdc3()
48 COMPLEX_IMAGINARY(z) = CRT_INFINITY * (__b * __c - __a * __d); in __divdc3()
54 __d = crt_copysign(crt_isinf(__d) ? 1.0 : 0.0, __d); in __divdc3()
[all …]
Dmulxc3.c23 __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 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c - __b * __d); in __mulxc3()
[all …]
Dmulsc3.c21 __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 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c - __b * __d); in __mulsc3()
[all …]
Dmuldc3.c21 __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 COMPLEX_REAL(z) = CRT_INFINITY * (__a * __c - __b * __d); in __muldc3()
[all …]
/external/clang/lib/Headers/
Daltivec.h5964 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm() local
5966 __d = vec_xor(__c, __d); in vec_perm()
5968 (vector int)__a, __d); in vec_perm()
5979 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm() local
5981 __d = vec_xor(__c, __d); in vec_perm()
5983 (vector int)__b, (vector int)__a, __d); in vec_perm()
5993 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm() local
5995 __d = vec_xor(__c, __d); in vec_perm()
5997 (vector int)__a, __d); in vec_perm()
6008 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm() local
[all …]
Davxintrin.h2326 double __d = *__a; in _mm256_broadcast_sd() local
2327 return (__m256d)(__v4df){ __d, __d, __d, __d }; in _mm256_broadcast_sd()
2537 _mm256_set_pd(double __a, double __b, double __c, double __d) in _mm256_set_pd() argument
2539 return (__m256d){ __d, __c, __b, __a }; in _mm256_set_pd()
2543 _mm256_set_ps(float __a, float __b, float __c, float __d, in _mm256_set_ps() argument
2546 return (__m256){ __h, __g, __f, __e, __d, __c, __b, __a }; in _mm256_set_ps()
2585 _mm256_set_epi64x(long long __a, long long __b, long long __c, long long __d) in _mm256_set_epi64x() argument
2587 return (__m256i)(__v4di){ __d, __c, __b, __a }; in _mm256_set_epi64x()
2592 _mm256_setr_pd(double __a, double __b, double __c, double __d) in _mm256_setr_pd() argument
2594 return (__m256d){ __a, __b, __c, __d }; in _mm256_setr_pd()
[all …]
/external/libcxx/include/
D__mutex_base147 unique_lock(mutex_type& __m, const chrono::duration<_Rep, _Period>& __d)
148 : __m_(_VSTD::addressof(__m)), __owns_(__m.try_lock_for(__d)) {}
184 bool try_lock_for(const chrono::duration<_Rep, _Period>& __d);
241 unique_lock<_Mutex>::try_lock_for(const chrono::duration<_Rep, _Period>& __d)
247 __owns_ = __m_->try_lock_for(__d);
335 const chrono::duration<_Rep, _Period>& __d);
341 const chrono::duration<_Rep, _Period>& __d,
360 __ceil(chrono::duration<_Rep, _Period> __d)
363 _To __r = duration_cast<_To>(__d);
364 if (__r < __d)
[all …]
Datomic912 void store(_Tp __d, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
914 {__c11_atomic_store(&__a_, __d, __m);}
916 void store(_Tp __d, memory_order __m = memory_order_seq_cst) _NOEXCEPT
918 {__c11_atomic_store(&__a_, __d, __m);}
932 _Tp exchange(_Tp __d, memory_order __m = memory_order_seq_cst) volatile _NOEXCEPT
933 {return __c11_atomic_exchange(&__a_, __d, __m);}
935 _Tp exchange(_Tp __d, memory_order __m = memory_order_seq_cst) _NOEXCEPT
936 {return __c11_atomic_exchange(&__a_, __d, __m);}
938 bool compare_exchange_weak(_Tp& __e, _Tp __d,
941 {return __c11_atomic_compare_exchange_weak(&__a_, &__e, __d, __s, __f);}
[all …]
D__split_buffer474 difference_type __d = __end_cap() - __end_;
475 __d = (__d + 1) / 2;
476 __begin_ = _VSTD::move_backward(__begin_, __end_, __end_ + __d);
477 __end_ += __d;
505 difference_type __d = __end_cap() - __end_;
506 __d = (__d + 1) / 2;
507 __begin_ = _VSTD::move_backward(__begin_, __end_, __end_ + __d);
508 __end_ += __d;
538 difference_type __d = __begin_ - __first_;
539 __d = (__d + 1) / 2;
[all …]
Dcomplex596 _Tp __d = __w.imag();
598 _Tp __bd = __b * __d;
599 _Tp __ad = __a * __d;
612 if (__libcpp_isnan_or_builtin(__d))
613 __d = copysign(_Tp(0), __d);
616 if (__libcpp_isinf_or_builtin(__c) || __libcpp_isinf_or_builtin(__d))
619 __d = copysign(__libcpp_isinf_or_builtin(__d) ? _Tp(1) : _Tp(0), __d);
635 if (__libcpp_isnan_or_builtin(__d))
636 __d = copysign(_Tp(0), __d);
641 __x = _Tp(INFINITY) * (__a * __c - __b * __d);
[all …]
Dcondition_variable159 const chrono::duration<_Rep, _Period>& __d);
165 const chrono::duration<_Rep, _Period>& __d,
246 const chrono::duration<_Rep, _Period>& __d)
248 return wait_until(__lock, chrono::steady_clock::now() + __d);
255 const chrono::duration<_Rep, _Period>& __d,
258 return wait_until(__lock, chrono::steady_clock::now() + __d,
Dchrono945 floor(const duration<_Rep, _Period>& __d)
947 _ToDuration __t = duration_cast<_ToDuration>(__d);
948 if (__t > __d)
960 ceil(const duration<_Rep, _Period>& __d)
962 _ToDuration __t = duration_cast<_ToDuration>(__d);
963 if (__t < __d)
975 round(const duration<_Rep, _Period>& __d)
977 _ToDuration __lower = floor<_ToDuration>(__d);
979 auto __lowerDiff = __d - __lower;
980 auto __upperDiff = __upper - __d;
[all …]
Dthread433 sleep_for(const chrono::duration<_Rep, _Period>& __d)
436 if (__d > duration<_Rep, _Period>::zero())
440 if (__d < _Max)
442 __ns = duration_cast<nanoseconds>(__d);
443 if (__ns < __d)
Drandom2014 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2056 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2086 static_assert(__d <= _Max, "mersenne_twister_engine invalid parameters");
2096 static _LIBCPP_CONSTEXPR const result_type tempering_d = __d;
2222 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2225 …mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f…
2228 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2231 …mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f…
2234 _UIntType __a, size_t __u, _UIntType __d, size_t __s,
2237 …mersenne_twister_engine<_UIntType, __w, __n, __m, __r, __a, __u, __d, __s, __b, __t, __c, __l, __f…
[all …]
Dalgorithm2337 const difference_type __d = __last - __p2;
2338 if (__m1 < __d)
2341 __p2 = __first + (__m1 - __d);
2988 difference_type __d = __last - __first;
2989 if (__d > 1)
2993 for (--__last, --__d; __first < __last; ++__first, --__d)
2995 difference_type __i = __uid(__g, _Pp(0, __d));
3012 difference_type __d = __last - __first;
3013 if (__d > 1)
3015 for (--__last; __first < __last; ++__first, --__d)
[all …]
/external/u-boot/include/linux/
Dkernel.h100 typeof(divisor) __d = divisor; \
103 (((__x) + ((__d) / 2)) / (__d)) : \
104 (((__x) - ((__d) / 2)) / (__d)); \
113 typeof(divisor) __d = divisor; \
114 unsigned long long _tmp = (x) + (__d) / 2; \
115 do_div(_tmp, __d); \
/external/libcxx/include/experimental/
Diterator77 ostream_joiner(ostream_type& __os, _Delim&& __d)
78 : __output_iter(_VSTD::addressof(__os)), __delim(_VSTD::move(__d)), __first(true) {}
80 ostream_joiner(ostream_type& __os, const _Delim& __d)
81 : __output_iter(_VSTD::addressof(__os)), __delim(__d), __first(true) {}
107 make_ostream_joiner(basic_ostream<_CharT, _Traits>& __os, _Delim && __d)
108 …ostream_joiner<typename decay<_Delim>::type, _CharT, _Traits>(__os, _VSTD::forward<_Delim>(__d)); }
/external/u-boot/drivers/net/
Dsmc91111.h98 #define SMC_outb(a,d,r) ({ word __d = (byte)(d); \
101 __w |= ((r)&1) ? __d<<8 : __d; \
173 #define SMC_outb(a,d,r) do{ word __d = (byte)(d); \
176 __w |= ((r)&1) ? __d<<8 : __d; \
229 #define SMC_outb(a, d, r) ({ word __d = (byte)(d); \
232 __w = (__w & 0x00ff) | (__d << 8); \
234 __w = (__w & 0xff00) | (__d); \
271 #define SMC_outb(a,d,r) ({ word __d = (byte)(d); \
274 __w |= ((r)&1) ? __d<<8 : __d; \
Dlan91c96.h75 #define SMC_outb(edev, d, r) ({ word __d = (byte)(d); \
78 __w |= ((r)&1) ? __d<<8 : __d; \
141 #define SMC_outb(edev, d, r) ({ word __d = (byte)(d); \
144 __w |= ((r)&1) ? __d<<8 : __d; \
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/NVPTX/
Dreg-copy.ll78 %__d.1.i = phi float [ %32, %if.then.28.i ], [ %3, %if.end.i ], [ %3, %if.then.i ]
85 %.pre6.i = tail call float @llvm.nvvm.fabs.f(float %__d.1.i) #2
96 %41 = bitcast float %__d.1.i to i32
186 %79 = bitcast float %__d.1.i to i32
192 …%__d.4.ph.i = phi float [ %__d.1.i, %if.end.85.i ], [ %81, %if.then.88.i ], [ %__d.1.i, %if.end.56…
197 %mul96.i = fmul float %__d.4.ph.i, %__b.4.ph.i
201 %mul100.i = fmul float %__d.4.ph.i, %__a.4.ph.i
/external/llvm/test/CodeGen/NVPTX/
Dreg-copy.ll78 %__d.1.i = phi float [ %32, %if.then.28.i ], [ %3, %if.end.i ], [ %3, %if.then.i ]
85 %.pre6.i = tail call float @llvm.nvvm.fabs.f(float %__d.1.i) #2
96 %41 = bitcast float %__d.1.i to i32
186 %79 = bitcast float %__d.1.i to i32
192 …%__d.4.ph.i = phi float [ %__d.1.i, %if.end.85.i ], [ %81, %if.then.88.i ], [ %__d.1.i, %if.end.56…
197 %mul96.i = fmul float %__d.4.ph.i, %__b.4.ph.i
201 %mul100.i = fmul float %__d.4.ph.i, %__a.4.ph.i
/external/clang/test/CodeGenCXX/
Ddebug-info-template-partial-specialization.cpp27 unique_ptr(pointer __p, _Dp __d) {} in unique_ptr() argument

12