OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:crt_scalbn
(Results
1 - 3
of
3
) sorted by null
/external/compiler-rt/lib/builtins/
divdc3.c
28
__c =
crt_scalbn
(__c, -__ilogbw);
29
__d =
crt_scalbn
(__d, -__ilogbw);
33
COMPLEX_REAL(z) =
crt_scalbn
((__a * __c + __b * __d) / __denom, -__ilogbw);
34
COMPLEX_IMAGINARY(z) =
crt_scalbn
((__b * __c - __a * __d) / __denom, -__ilogbw);
int_math.h
105
#define
crt_scalbn
(x, y) scalbn((x), (y))
macro
109
#define
crt_scalbn
(x, y) __builtin_scalbn((x), (y))
macro
/external/compiler-rt/lib/builtins/ppc/
divtc3.c
30
cDD.s.hi =
crt_scalbn
(cDD.s.hi, -ilogbw);
31
cDD.s.lo =
crt_scalbn
(cDD.s.lo, -ilogbw);
32
dDD.s.hi =
crt_scalbn
(dDD.s.hi, -ilogbw);
33
dDD.s.lo =
crt_scalbn
(dDD.s.lo, -ilogbw);
43
real.s.hi =
crt_scalbn
(real.s.hi, -ilogbw);
44
real.s.lo =
crt_scalbn
(real.s.lo, -ilogbw);
45
imag.s.hi =
crt_scalbn
(imag.s.hi, -ilogbw);
46
imag.s.lo =
crt_scalbn
(imag.s.lo, -ilogbw);
Completed in 36 milliseconds