/external/compiler-rt/lib/ |
D | 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 …]
|
D | 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 …]
|
D | 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 …]
|
D | 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 …]
|
D | 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 …]
|
D | 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 …]
|
/external/stlport/stlport/stl/ |
D | _uninitialized.h | 66 _OutputIter __result, const input_iterator_tag &, _Distance* __d) in __ucopy() argument 67 { return __ucopy(__first, __last, __result, __d); } in __ucopy() 72 _OutputIter __result, const forward_iterator_tag &, _Distance* __d) in __ucopy() argument 73 { return __ucopy(__first, __last, __result, __d); } in __ucopy() 77 _OutputIter __result, const bidirectional_iterator_tag &, _Distance* __d) in __ucopy() argument 78 { return __ucopy(__first, __last, __result, __d); } in __ucopy() 229 const _Tp& __x, const input_iterator_tag &, _Distance* __d) in __ufill() argument 230 { __ufill(__first, __last, __x, __d); } in __ufill() 235 const _Tp& __x, const forward_iterator_tag &, _Distance* __d) in __ufill() argument 236 { __ufill(__first, __last, __x, __d); } in __ufill() [all …]
|
D | _rope.h | 378 _Rope_RopeRep(_Tag __t, unsigned char __d, bool __b, size_t _p_size, 381 _M_tag(__t), _M_is_balanced(__b), _M_depth(__d), _M_c_string(0), _M_size(__a, _p_size) { 470 _Rope_RopeLeaf( _CharT* __d, size_t _p_size, allocator_type __a) 472 _M_data(__d) { 541 bool __d, allocator_type __a) 543 , _M_delete_when_done(__d) 1215 size_t _p_size, bool __d, allocator_type __a) { 1218 return new(__space) _RopeFunction(__f, _p_size, __d, __a);
|
D | _rope.c | 1204 _RopeRep* __d = __clrstack[__csptr]; in _S_fetch_ptr() local 1205 __d->_M_free_c_string(); in _S_fetch_ptr() 1206 __d->_M_c_string = 0; in _S_fetch_ptr()
|
D | _algo.c | 461 _Distance __d = _STLP_PRIV __gcd(__n, __k); in __rotate_aux() local 463 for (_Distance __i = 0; __i < __d; __i++) { in __rotate_aux() 468 for (_Distance __j = 0; __j < __l/__d; __j++) { in __rotate_aux() 480 for (_Distance __j = 0; __j < __k/__d - 1; __j ++) { in __rotate_aux()
|
/external/kernel-headers/original/asm-x86/ |
D | msr.h | 208 unsigned int __a,__d; \ 209 __asm__ __volatile__("rdtsc" : "=a" (__a), "=d" (__d)); \ 210 (val) = ((unsigned long)__a) | (((unsigned long)__d)<<32); \ 214 unsigned long __a, __d; \ 215 __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (__a), "=d" (__d), "=c" (aux)); \ 216 (val) = (__d << 32) | __a; \
|
/external/compiler-rt/test/Unit/ |
D | divdc3_test.c | 21 double _Complex __divdc3(double __a, double __b, double __c, double __d);
|
D | divxc3_test.c | 24 __divxc3(long double __a, long double __b, long double __c, long double __d);
|
D | divsc3_test.c | 21 float _Complex __divsc3(float __a, float __b, float __c, float __d);
|
D | mulsc3_test.c | 21 float _Complex __mulsc3(float __a, float __b, float __c, float __d);
|
D | multc3_test.c | 24 __multc3(long double __a, long double __b, long double __c, long double __d);
|
D | divtc3_test.c | 24 __divtc3(long double __a, long double __b, long double __c, long double __d);
|
D | mulxc3_test.c | 24 __mulxc3(long double __a, long double __b, long double __c, long double __d);
|
D | muldc3_test.c | 21 double _Complex __muldc3(double __a, double __b, double __c, double __d);
|