HomeSort by relevance Sort by last modified time
    Searched refs:_Complex (Results 51 - 75 of 98) sorted by null

1 23 4

  /external/clang/test/Sema/
attr-mode.c 26 typedef _Complex double c32 __attribute((mode(SC)));
28 typedef _Complex float c64 __attribute((mode(DC)));
29 typedef _Complex float c80 __attribute((mode(XC)));
64 typedef _Complex float c128ibm __attribute__ ((mode (TC)));
66 void f_ft128_complex_arg(_Complex long double *x);
complex-int.c 18 switch (arr) { // expected-error{{statement requires expression of integer type ('_Complex int' invalid)}}
45 void test3(_Complex int *x) {
49 void test4(_Complex float *x) {
53 void test5(_Complex int *x) {
exprs.c 38 _Complex double test1() {
42 _Complex double test2() {
80 void test7(int *P, _Complex float Gamma) {
81 P = (P-42) + Gamma*4; // expected-error {{invalid operands to binary expression ('int *' and '_Complex float')}}
cast.c 24 typedef _Complex int CInt;
25 typedef _Complex long CLong;
26 typedef _Complex float CFloat;
27 typedef _Complex double CDouble;
  /external/clang/test/CodeGen/
aarch64-arguments.c 95 _Complex float f22(void) {}
96 _Complex double f23(void) {}
99 struct s24 { _Complex char f0; };
103 struct s25 { _Complex short f0; };
107 struct s26 { _Complex int f0; };
111 struct s27 { _Complex long f0; };
c11atomics.c 174 void testComplexFloat(_Atomic(_Complex float) *fp) {
193 _Atomic(_Complex float) x = 2.0f;
207 _Complex float f = *fp;
exprs.c 85 union f4_y {int x; _Complex float y;};
86 _Complex float f4() {return ((union f4_y)(_Complex float)2.0).y;}
x86_64-arguments.c 221 _Complex float f32(_Complex float A, _Complex float B) {
365 typedef _Complex int T2;
366 typedef _Complex char T5;
367 typedef _Complex int T7;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
complex.h 37 # define _Complex __complex__
40 #define complex _Complex
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
complex.h 37 # define _Complex __complex__
40 #define complex _Complex
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
complex.h 37 # define _Complex __complex__
40 #define complex _Complex
  /external/clang/test/CodeGenCXX/
references.cpp 29 void f(const _Complex int&);
36 _Complex int& complex_int_reference_return();
70 _Complex int a = 10i;
78 struct { const _Complex int &a; } agg = { 10i };
  /external/clang/test/FixIt/
fixit.c 22 // CHECK: _Complex double cd;
23 _Complex cd; // expected-warning {{assuming '_Complex double'}}
  /external/clang/test/PCH/
types.c 18 _Complex float Cfloat_val;
  /external/compiler-rt/lib/
divdc3.c 20 double _Complex
32 double _Complex z;
divsc3.c 20 float _Complex
32 float _Complex z;
divxc3.c 21 long double _Complex
33 long double _Complex z;
muldc3.c 20 double _Complex
27 double _Complex z;
mulsc3.c 20 float _Complex
27 float _Complex z;
mulxc3.c 22 long double _Complex
29 long double _Complex z;
  /external/compiler-rt/test/Unit/
divdc3_test.c 21 double _Complex __divdc3(double __a, double __b, double __c, double __d);
26 classify(double _Complex x)
51 double _Complex r = __divdc3(a, b, c, d);
54 double _Complex dividend;
55 double _Complex divisor;
100 double _Complex z = (a * c + b * d) / (c * c + d * d)
divsc3_test.c 21 float _Complex __divsc3(float __a, float __b, float __c, float __d);
26 classify(float _Complex x)
51 float _Complex r = __divsc3(a, b, c, d);
54 float _Complex dividend;
55 float _Complex divisor;
100 float _Complex z = (a * c + b * d) / (c * c + d * d)
divtc3_test.c 23 long double _Complex
29 classify(long double _Complex x)
54 long double _Complex r = __divtc3(a, b, c, d);
58 long double _Complex dividend;
59 long double _Complex divisor;
104 long double _Complex z = (a * c + b * d) / (c * c + d * d)
divxc3_test.c 23 long double _Complex
29 classify(long double _Complex x)
54 long double _Complex r = __divxc3(a, b, c, d);
57 long double _Complex dividend;
58 long double _Complex divisor;
103 long double _Complex z = (a * c + b * d) / (c * c + d * d)
mulsc3_test.c 21 float _Complex __mulsc3(float __a, float __b, float __c, float __d);
26 classify(float _Complex x)
51 float _Complex r = __mulsc3(a, b, c, d);
54 float _Complex dividend;
55 float _Complex divisor;
100 float _Complex z = a * c - b * d + _Complex_I*(a * d + b * c);

Completed in 190 milliseconds

1 23 4