OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:_Complex_I
(Results
1 - 10
of
10
) sorted by null
/bionic/libc/include/
complex.h
35
#define
_Complex_I
((float _Complex)1.0i)
39
_Static_assert(__generic(
_Complex_I
, float _Complex, 1, 0),
40
"
_Complex_I
must be of type float _Complex");
44
#define I
_Complex_I
/bionic/tests/headers/posix/
complex_h.c
36
#if !defined(
_Complex_I
)
37
#error
_Complex_I
/external/compiler-rt/test/builtins/Unit/
divdc3_test.c
102
+ (b * c - a * d) / (c * c + d * d) *
_Complex_I
;
divsc3_test.c
102
+ (b * c - a * d) / (c * c + d * d) *
_Complex_I
;
divtc3_test.c
104
+ (b * c - a * d) / (c * c + d * d) *
_Complex_I
;
divxc3_test.c
104
+ (b * c - a * d) / (c * c + d * d) *
_Complex_I
;
muldc3_test.c
100
if (r != a * c - b * d +
_Complex_I
*(a * d + b * c))
mulsc3_test.c
101
float _Complex z = a * c - b * d +
_Complex_I
*(a * d + b * c);
multc3_test.c
103
if (r != a * c - b * d +
_Complex_I
*(a * d + b * c))
mulxc3_test.c
102
if (r != a * c - b * d +
_Complex_I
*(a * d + b * c))
Completed in 1130 milliseconds