HomeSort by relevance Sort by last modified time
    Searched full:_complex (Results 126 - 150 of 399) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4393122/lib64/clang/5.0.1/include/
__clang_cuda_complex_builtins.h 32 extern "C" inline __device__ double _Complex __muldc3(double __a, double __b,
38 double _Complex z;
83 extern "C" inline __device__ float _Complex __mulsc3(float __a, float __b,
89 float _Complex z;
132 extern "C" inline __device__ double _Complex __divdc3(double __a, double __b,
145 double _Complex z;
169 extern "C" inline __device__ float _Complex __divsc3(float __a, float __b,
179 float _Complex z;
  /prebuilts/clang/host/linux-x86/clang-4479392/lib64/clang/5.0.2/include/
__clang_cuda_complex_builtins.h 32 extern "C" inline __device__ double _Complex __muldc3(double __a, double __b,
38 double _Complex z;
83 extern "C" inline __device__ float _Complex __mulsc3(float __a, float __b,
89 float _Complex z;
132 extern "C" inline __device__ double _Complex __divdc3(double __a, double __b,
145 double _Complex z;
169 extern "C" inline __device__ float _Complex __divsc3(float __a, float __b,
179 float _Complex z;
  /prebuilts/clang/host/linux-x86/clang-4579689/lib64/clang/6.0.1/include/
__clang_cuda_complex_builtins.h 32 extern "C" inline __device__ double _Complex __muldc3(double __a, double __b,
38 double _Complex z;
83 extern "C" inline __device__ float _Complex __mulsc3(float __a, float __b,
89 float _Complex z;
132 extern "C" inline __device__ double _Complex __divdc3(double __a, double __b,
145 double _Complex z;
169 extern "C" inline __device__ float _Complex __divsc3(float __a, float __b,
179 float _Complex z;
  /prebuilts/clang/host/linux-x86/clang-4630689/lib64/clang/6.0.1/include/
__clang_cuda_complex_builtins.h 32 extern "C" inline __device__ double _Complex __muldc3(double __a, double __b,
38 double _Complex z;
83 extern "C" inline __device__ float _Complex __mulsc3(float __a, float __b,
89 float _Complex z;
132 extern "C" inline __device__ double _Complex __divdc3(double __a, double __b,
145 double _Complex z;
169 extern "C" inline __device__ float _Complex __divsc3(float __a, float __b,
179 float _Complex z;
  /prebuilts/clang/host/linux-x86/clang-4639204/lib64/clang/6.0.1/include/
__clang_cuda_complex_builtins.h 32 extern "C" inline __device__ double _Complex __muldc3(double __a, double __b,
38 double _Complex z;
83 extern "C" inline __device__ float _Complex __mulsc3(float __a, float __b,
89 float _Complex z;
132 extern "C" inline __device__ double _Complex __divdc3(double __a, double __b,
145 double _Complex z;
169 extern "C" inline __device__ float _Complex __divsc3(float __a, float __b,
179 float _Complex z;
  /prebuilts/clang/host/linux-x86/clang-4691093/lib64/clang/6.0.2/include/
__clang_cuda_complex_builtins.h 32 extern "C" inline __device__ double _Complex __muldc3(double __a, double __b,
38 double _Complex z;
83 extern "C" inline __device__ float _Complex __mulsc3(float __a, float __b,
89 float _Complex z;
132 extern "C" inline __device__ double _Complex __divdc3(double __a, double __b,
145 double _Complex z;
169 extern "C" inline __device__ float _Complex __divsc3(float __a, float __b,
179 float _Complex z;
  /external/clang/test/CodeGen/
ppc64-complex-parms.c 3 float crealf(_Complex float);
4 double creal(_Complex double);
5 long double creall(_Complex long double);
7 float foo_float(_Complex float x) {
13 double foo_double(_Complex double x) {
19 long double foo_long_double(_Complex long double x) {
25 int foo_int(_Complex int x) {
31 short foo_short(_Complex short x) {
37 signed char foo_char(_Complex signed char x) {
43 long foo_long(_Complex long x)
    [all...]
atomic_ops.c 33 extern _Atomic(_Complex int) x;
compound-literal.c 5 _Complex double * x = &(_Complex double){1.0f};
12 _Complex double * x = &(_Complex double){1.0f};
  /external/clang/test/CodeGenCXX/
reference-cast.cpp 146 _Complex double get_complex_double();
149 const _Complex float &f1() {
156 return (const _Complex float&)get_complex_double();
163 return static_cast<const _Complex float&>(get_complex_double());
  /external/clang/test/CodeGenObjC/
fp2ret.m 11 -(_Complex long double) complexLongDoubleValue;
  /external/clang/test/Sema/
builtin-classify-type.c 23 _Complex double cc;
  /external/libffi/doc/
libffi.texi 353 The C @code{_Complex float} type.
357 The C @code{_Complex double} type.
361 The C @code{_Complex long double} type.
452 standard (@code{_Complex float}, @code{_Complex double} and
453 @code{_Complex long double} with the built-in type descriptors
457 Custom complex types like @code{_Complex int} can also be used.
500 void complex_fn(_Complex float cf,
501 _Complex double cd,
502 _Complex long double cld
    [all...]
  /external/compiler-rt/test/builtins/Unit/
divdc3_test.c 21 COMPILER_RT_ABI double _Complex
27 classify(double _Complex x)
52 double _Complex r = __divdc3(a, b, c, d);
55 double _Complex dividend;
56 double _Complex divisor;
101 double _Complex z = (a * c + b * d) / (c * c + d * d)
divsc3_test.c 21 COMPILER_RT_ABI float _Complex
27 classify(float _Complex x)
52 float _Complex r = __divsc3(a, b, c, d);
55 float _Complex dividend;
56 float _Complex divisor;
101 float _Complex z = (a * c + b * d) / (c * c + d * d)
divtc3_test.c 22 COMPILER_RT_ABI long double _Complex
28 classify(long double _Complex x)
53 long double _Complex r = __divtc3(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)
divxc3_test.c 23 COMPILER_RT_ABI 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 COMPILER_RT_ABI float _Complex
27 classify(float _Complex x)
52 float _Complex r = __mulsc3(a, b, c, d);
55 float _Complex dividend;
56 float _Complex divisor;
101 float _Complex z = a * c - b * d + _Complex_I*(a * d + b * c);
  /external/clang/test/Coverage/
c-language-features.inc 107 // FIXME: Add _Complex and aggregate cases.
138 _Complex float t32_a, t32_b;
  /external/compiler-rt/lib/builtins/
README.txt 180 float _Complex __mulsc3( float a, float b, float c, float d);
181 double _Complex __muldc3(double a, double b, double c, double d);
182 long double _Complex __mulxc3(long double a, long double b,
184 long double _Complex __multc3(long double a, long double b,
189 float _Complex __divsc3( float a, float b, float c, float d);
190 double _Complex __divdc3(double a, double b, double c, double d);
191 long double _Complex __divxc3(long double a, long double b,
193 long double _Complex __divtc3(long double a, long double b,
divtc3.c 20 COMPILER_RT_ABI long double _Complex
32 long double _Complex z;
multc3.c 20 COMPILER_RT_ABI long double _Complex
27 long double _Complex z;
  /external/compiler-rt/lib/builtins/ppc/
divtc3.c 17 long double _Complex
86 long double _Complex z;
  /external/libffi/src/
types.c 53 _Complex type x; \
56 sizeof(_Complex type), \
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
complex.h 37 # define _Complex __complex__
40 #define complex _Complex

Completed in 1174 milliseconds

1 2 3 4 56 7 8 91011>>