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

1 2 3 4

  /external/clang/test/CodeGen/
2005-09-20-ComplexConstants.c 3 const double _Complex x[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
cxx-value-init.cpp 9 _Complex int v4 = typeof(_Complex int)();
10 _Complex float v5 = typeof(_Complex float)();
ppc64-varargs-complex.c 10 _Complex int i = va_arg(ap, _Complex int);
26 _Complex short s = va_arg(ap, _Complex short);
42 _Complex char c = va_arg(ap, _Complex char);
58 _Complex float f = va_arg(ap, _Complex float);
libcalls-complex.c 4 extern float crealf(float _Complex);
5 extern double creal(double _Complex);
6 extern long double creall(long double _Complex);
8 extern float cimagf(float _Complex);
9 extern double cimag(double _Complex);
10 extern long double cimagl(long double _Complex);
12 double test_creal(double _Complex z) {
18 long double test_creall(double _Complex z) {
24 float test_crealf(double _Complex z) {
30 double test_cimag(double _Complex z)
    [all...]
volatile-2.c 10 extern volatile _Complex float test0_v;
21 extern volatile _Complex float test1_v;
complex-init-list.c 7 _Complex float x = { 1.0f, 1.0f/0.0f };
10 _Complex float f(float x, float y) { _Complex float z = { x, y }; return z; }
15 _Complex float f2(float x, float y) { return (_Complex float){ x, y }; }
ppc64-complex-return.c 4 float crealf(_Complex float);
5 double creal(_Complex double);
6 long double creall(_Complex long double);
8 _Complex float foo_float(_Complex float x) {
14 _Complex double foo_double(_Complex double x) {
20 _Complex long double foo_long_double(_Complex long double x) {
26 _Complex int foo_int(_Complex int x)
    [all...]
capture-complex-expr-in-block.c 7 _Complex double c;
9 _Complex double z;
ppc64-complex-parms.c 4 float crealf(_Complex float);
5 double creal(_Complex double);
6 long double creall(_Complex long double);
8 float foo_float(_Complex float x) {
14 double foo_double(_Complex double x) {
20 long double foo_long_double(_Complex long double x) {
26 int foo_int(_Complex int x) {
32 short foo_short(_Complex short x) {
38 signed char foo_char(_Complex signed char x) {
44 long foo_long(_Complex long x)
    [all...]
2007-08-21-ComplexCst.c 2 void f(_Complex float z);
volatile-complex.c 3 // Validate that volatile _Complex loads and stores are generated
12 volatile _Complex float cf;
13 volatile _Complex double cd;
14 volatile _Complex float cf32 __attribute__((aligned(32)));
15 volatile _Complex double cd32 __attribute__((aligned(32)));
conditional-gnu-ext.c 24 _Complex int getComplex(_Complex int val) {
31 _Complex int complx() {
32 _Complex int cond;
33 _Complex int rhs;
complex-builtints.c 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);
    [all...]
aarch64-type-sizes.c 52 return sizeof(float _Complex);
57 return sizeof(double _Complex);
62 return sizeof(long double _Complex);
complex.c 5 double _Complex a = 5;
6 double _Complex b = 42;
11 _Complex double bar(int);
12 void test(_Complex double*);
13 void takecomplex(_Complex double);
16 _Complex double X;
22 _Complex double g1, g2;
23 _Complex float cf;
73 float _Complex t4();
76 float _Complex x = t4()
    [all...]
  /external/clang/test/FixIt/
fixit-recompile.c 4 _Complex cd;
6 // CHECK: _Complex double cd;
fixit-suffix.c 5 _Complex cd;
  /external/clang/test/Headers/Inputs/include/
complex.h 3 #define complex _Complex
  /external/clang/test/Sema/
warn-freestanding-complex.c 3 void foo(float _Complex c) { // expected-warning{{complex numbers are an extension in a freestanding C99 implementation}}
complex-init-list.c 20 _Complex float valid1 = { 1.0f, 2.0f }; // expected-warning {{specifying real and imaginary components is an extension}}
24 struct teststruct { _Complex float x; };
28 _Complex int valid2 = { 1, 2 }; // expected-warning {{complex integer}} expected-warning {{specifying real and imaginary components is an extension}}
30 _Complex float valid4[2] = { {1.0f, 1.0f}, {1.0f, 1.0f} }; // expected-warning 2 {{specifying real and imaginary components is an extension}}
32 _Complex float valid5 = {1.0f, 1.0fi}; // expected-warning {{imaginary constants}} expected-warning {{specifying real and imaginary components is an extension}}
37 _Complex float invalid2 = { 1, 2, 3 }; // expected-warning {{excess elements}}
38 _Complex float invalid3 = {}; // expected-error {{scalar initializer cannot be empty}} expected-warning {{GNU empty initializer}}
42 _Complex float sizetest1[] = { {1.0f, 1.0f}, {1.0f, 1.0f} }; // expected-warning 2 {{specifying real and imaginary components is an extension}}
43 _Complex float sizecheck1[(sizeof(sizetest1) == sizeof(*sizetest1)*2) ? 1 : -1];
44 _Complex float sizetest2[] = { 1.0f, 1.0f, {1.0f, 1.0f} }; // expected-warning {{specifying real and imagi (…)
    [all...]
overloadable-complex.c 4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) {
12 int *foo(float _Complex) __attribute__((__overloadable__));
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) {
21 long *foo(double _Complex) __attribute__((__overloadable__));
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) {
30 char *promote_or_convert(double _Complex) __attribute__((__overloadable__)); // expected-note 2 {{candidate function}}
31 int *promote_or_convert(long double _Complex) __attribute__((__overloadable__)); // expected-note 2 {{candidate function}}
    [all...]
  /external/clang/test/Analysis/
complex-init-list.cpp 6 _Complex float valid1 = { 0.0f, 0.0f };
  /external/clang/test/SemaCXX/
complex-init-list.cpp 14 // (No pedantic warning is necessary because _Complex is not part of C++.)
15 _Complex float valid1 = { 1.0f, 2.0f };
complex-overload.cpp 4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) {
12 int *foo(float _Complex);
14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) {
21 long *foo(double _Complex);
23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) {
30 char *promote_or_convert(double _Complex); // expected-note{{candidate function}}
31 int *promote_or_convert(long double _Complex); // expected-note{{candidate function}}
    [all...]
  /external/clang/test/CodeGenCXX/
lvalue-bitcasts.cpp 32 _Complex float cf;
33 _Complex float &cfr = cf;
38 cfr = reinterpret_cast<_Complex float&>(ir);
43 cfr = reinterpret_cast<_Complex float&>(fr);
47 cfr = reinterpret_cast<_Complex float&>(xr);
77 _Complex float cf;
78 _Complex float &cfr = cf;
83 cfr = (_Complex float&)ir;
88 cfr = (_Complex float&)fr;
92 cfr = (_Complex float&)xr
    [all...]

Completed in 1615 milliseconds

1 2 3 4