HomeSort by relevance Sort by last modified time
    Searched full:_complex (Results 1 - 25 of 211) sorted by null

1 2 3 4 5 6 7 8 9

  /external/clang/test/Headers/Inputs/include/
complex.h 3 #define complex _Complex
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
complex.h 35 #define complex _Complex
51 double __MINGW_ATTRIB_CONST creal (double _Complex);
52 double __MINGW_ATTRIB_CONST cimag (double _Complex);
53 double __MINGW_ATTRIB_CONST carg (double _Complex);
54 double __MINGW_ATTRIB_CONST cabs (double _Complex) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
55 double _Complex __MINGW_ATTRIB_CONST conj (double _Complex);
56 double _Complex cacos (double _Complex);
57 double _Complex casin (double _Complex)
    [all...]
  /external/clang/test/SemaCXX/
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/CodeGen/
cxx-value-init.cpp 9 _Complex int v4 = typeof(_Complex int)();
10 _Complex float v5 = typeof(_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...]
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...]
conditional-gnu-ext.c 24 _Complex int getComplex(_Complex int val) {
31 _Complex int complx() {
32 _Complex int cond;
33 _Complex int rhs;
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...]
2007-08-21-ComplexCst.c 2 void f(_Complex float z);
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 }; }
2005-09-20-ComplexConstants.c 3 const double _Complex x[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
libcall-declarations.c 181 double cabs(double _Complex);
182 float cabsf(float _Complex);
183 long double cabsl(long double _Complex);
184 double _Complex cacos(double _Complex);
185 float _Complex cacosf(float _Complex);
186 long double _Complex cacosl(long double _Complex);
187 double _Complex cacosh(double _Complex)
    [all...]
  /external/clang/test/Sema/
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...]
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...]
warn-freestanding-complex.c 3 void foo(float _Complex c) { // expected-warning{{complex numbers are an extension in a freestanding C99 implementation}}
  /prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/
tgmath.h 52 static float _Complex _TG_ATTRSp __tg_promote(float _Complex);
53 static double _Complex _TG_ATTRSp __tg_promote(double _Complex);
54 static long double _Complex _TG_ATTRSp __tg_promote(long double _Complex);
77 static float _Complex
79 __tg_acos(float _Complex __x) {return cacosf(__x);}
81 static double _Complex
83 __tg_acos(double _Complex __x) {return cacos(__x);
    [all...]
  /prebuilts/misc/linux-x86/analyzer/lib/clang/3.3/include/
tgmath.h 52 static float _Complex _TG_ATTRSp __tg_promote(float _Complex);
53 static double _Complex _TG_ATTRSp __tg_promote(double _Complex);
54 static long double _Complex _TG_ATTRSp __tg_promote(long double _Complex);
77 static float _Complex
79 __tg_acos(float _Complex __x) {return cacosf(__x);}
81 static double _Complex
83 __tg_acos(double _Complex __x) {return cacos(__x);
    [all...]
  /external/clang/lib/Headers/
tgmath.h 52 static float _Complex _TG_ATTRSp __tg_promote(float _Complex);
53 static double _Complex _TG_ATTRSp __tg_promote(double _Complex);
54 static long double _Complex _TG_ATTRSp __tg_promote(long double _Complex);
77 static float _Complex
79 __tg_acos(float _Complex __x) {return cacosf(__x);}
81 static double _Complex
83 __tg_acos(double _Complex __x) {return cacos(__x);
    [all...]
  /prebuilts/clang/darwin-x86/host/3.4/lib/clang/3.4/include/
tgmath.h 52 static float _Complex _TG_ATTRSp __tg_promote(float _Complex);
53 static double _Complex _TG_ATTRSp __tg_promote(double _Complex);
54 static long double _Complex _TG_ATTRSp __tg_promote(long double _Complex);
77 static float _Complex
79 __tg_acos(float _Complex __x) {return cacosf(__x);}
81 static double _Complex
83 __tg_acos(double _Complex __x) {return cacos(__x);
    [all...]
  /prebuilts/clang/darwin-x86/host/3.5/lib/clang/3.5/include/
tgmath.h 52 static float _Complex _TG_ATTRSp __tg_promote(float _Complex);
53 static double _Complex _TG_ATTRSp __tg_promote(double _Complex);
54 static long double _Complex _TG_ATTRSp __tg_promote(long double _Complex);
77 static float _Complex
79 __tg_acos(float _Complex __x) {return cacosf(__x);}
81 static double _Complex
83 __tg_acos(double _Complex __x) {return cacos(__x);
    [all...]
  /prebuilts/clang/linux-x86/host/3.4/lib/clang/3.4/include/
tgmath.h 52 static float _Complex _TG_ATTRSp __tg_promote(float _Complex);
53 static double _Complex _TG_ATTRSp __tg_promote(double _Complex);
54 static long double _Complex _TG_ATTRSp __tg_promote(long double _Complex);
77 static float _Complex
79 __tg_acos(float _Complex __x) {return cacosf(__x);}
81 static double _Complex
83 __tg_acos(double _Complex __x) {return cacos(__x);
    [all...]
  /prebuilts/clang/linux-x86/host/3.5/lib/clang/3.5/include/
tgmath.h 52 static float _Complex _TG_ATTRSp __tg_promote(float _Complex);
53 static double _Complex _TG_ATTRSp __tg_promote(double _Complex);
54 static long double _Complex _TG_ATTRSp __tg_promote(long double _Complex);
77 static float _Complex
79 __tg_acos(float _Complex __x) {return cacosf(__x);}
81 static double _Complex
83 __tg_acos(double _Complex __x) {return cacos(__x);
    [all...]
  /prebuilts/sdk/renderscript/clang-include/
tgmath.h 52 static float _Complex _TG_ATTRSp __tg_promote(float _Complex);
53 static double _Complex _TG_ATTRSp __tg_promote(double _Complex);
54 static long double _Complex _TG_ATTRSp __tg_promote(long double _Complex);
77 static float _Complex
79 __tg_acos(float _Complex __x) {return cacosf(__x);}
81 static double _Complex
83 __tg_acos(double _Complex __x) {return cacos(__x);
    [all...]
  /external/clang/test/FixIt/
fixit-recompile.c 4 _Complex cd;
6 // CHECK: _Complex double cd;
  /external/clang/test/CodeGenObjC/
encode-test-5.m 4 char *a = @encode(_Complex int);
7 char *b = @encode(_Complex float);
10 char *c = @encode(_Complex double);

Completed in 1702 milliseconds

1 2 3 4 5 6 7 8 9