OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:crt_copysignl
(Results
1 - 5
of
5
) sorted by null
/external/compiler-rt/lib/builtins/
multc3.c
33
a =
crt_copysignl
(crt_isinf(a) ? 1 : 0, a);
34
b =
crt_copysignl
(crt_isinf(b) ? 1 : 0, b);
36
c =
crt_copysignl
(0, c);
38
d =
crt_copysignl
(0, d);
42
c =
crt_copysignl
(crt_isinf(c) ? 1 : 0, c);
43
d =
crt_copysignl
(crt_isinf(d) ? 1 : 0, d);
45
a =
crt_copysignl
(0, a);
47
b =
crt_copysignl
(0, b);
53
a =
crt_copysignl
(0, a);
55
b =
crt_copysignl
(0, b)
[
all
...]
mulxc3.c
37
__a =
crt_copysignl
(crt_isinf(__a) ? 1 : 0, __a);
38
__b =
crt_copysignl
(crt_isinf(__b) ? 1 : 0, __b);
40
__c =
crt_copysignl
(0, __c);
42
__d =
crt_copysignl
(0, __d);
47
__c =
crt_copysignl
(crt_isinf(__c) ? 1 : 0, __c);
48
__d =
crt_copysignl
(crt_isinf(__d) ? 1 : 0, __d);
50
__a =
crt_copysignl
(0, __a);
52
__b =
crt_copysignl
(0, __b);
59
__a =
crt_copysignl
(0, __a);
61
__b =
crt_copysignl
(0, __b)
[
all
...]
divtc3.c
39
__real__ z =
crt_copysignl
(CRT_INFINITY, __c) * __a;
40
__imag__ z =
crt_copysignl
(CRT_INFINITY, __c) * __b;
45
__a =
crt_copysignl
(crt_isinf(__a) ? 1.0 : 0.0, __a);
46
__b =
crt_copysignl
(crt_isinf(__b) ? 1.0 : 0.0, __b);
53
__c =
crt_copysignl
(crt_isinf(__c) ? 1.0 : 0.0, __c);
54
__d =
crt_copysignl
(crt_isinf(__d) ? 1.0 : 0.0, __d);
divxc3.c
40
COMPLEX_REAL(z) =
crt_copysignl
(CRT_INFINITY, __c) * __a;
41
COMPLEX_IMAGINARY(z) =
crt_copysignl
(CRT_INFINITY, __c) * __b;
46
__a =
crt_copysignl
(crt_isinf(__a) ? 1 : 0, __a);
47
__b =
crt_copysignl
(crt_isinf(__b) ? 1 : 0, __b);
54
__c =
crt_copysignl
(crt_isinf(__c) ? 1 : 0, __c);
55
__d =
crt_copysignl
(crt_isinf(__d) ? 1 : 0, __d);
int_math.h
67
#define
crt_copysignl
(x, y) copysignl((x), (y))
macro
71
#define
crt_copysignl
(x, y) __builtin_copysignl((x), (y))
macro
Completed in 652 milliseconds