Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:_Complex

7 extern float _Complex conjf (float _Complex);
8 extern double _Complex conj (double _Complex);
9 extern long double _Complex conjl (long double _Complex);
11 extern float crealf (float _Complex);
12 extern double creal (double _Complex);
13 extern long double creall (long double _Complex);
15 extern float cimagf (float _Complex);
16 extern double cimag (double _Complex);
17 extern long double cimagl (long double _Complex);
27 volatile float _Complex fc = 1.0F + 2.0iF;
28 volatile double _Complex dc = 1.0 + 2.0i;
29 volatile long double _Complex ldc = 1.0L + 2.0iL;