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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Headers/Inputs/include/
complex.h 3 #define complex _Complex macro
  /external/libcxx/test/std/language.support/support.limits/support.limits.general/
complex.version.pass.cpp 11 // <complex> feature macros
18 #include <complex>
24 // ensure that the macros that are supposed to be defined in <complex> are defined.
  /external/libcxx/test/std/numerics/complex.number/
cases.h 10 // <complex>
17 #include <complex>
20 const std::complex<double> testcases[] =
22 std::complex<double>( 1.e-6, 1.e-6),
23 std::complex<double>(-1.e-6, 1.e-6),
24 std::complex<double>(-1.e-6, -1.e-6),
25 std::complex<double>( 1.e-6, -1.e-6),
27 std::complex<double>( 1.e+6, 1.e-6),
28 std::complex<double>(-1.e+6, 1.e-6),
29 std::complex<double>(-1.e+6, -1.e-6)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_creal.c 31 #include <complex.h>
34 creal(double complex z)
s_crealf.c 31 #include <complex.h>
34 crealf(float complex z)
s_creall.c 31 #include <complex.h>
34 creall(long double complex z)
s_conj.c 31 #include <complex.h>
35 double complex
36 conj(double complex z)
s_conjf.c 31 #include <complex.h>
35 float complex
36 conjf(float complex z)
s_conjl.c 31 #include <complex.h>
35 long double complex
36 conjl(long double complex z)
s_cimag.c 31 #include <complex.h>
35 cimag(double complex z)
s_cimagf.c 31 #include <complex.h>
35 cimagf(float complex z)
s_cimagl.c 31 #include <complex.h>
35 cimagl(long double complex z)
  /external/libcxx/test/std/depr/depr.c.headers/
complex.h.pass.cpp 10 // <complex.h>
12 #include <complex.h>
16 std::complex<double> d;
  /external/libcxx/test/std/numerics/complex.number/complex.literals/
literals1.fail.cpp 12 #include <complex>
19 std::complex<float> foo = 1.0if; // should fail w/conversion operator not found
  /bionic/libc/include/
complex.h 43 #define complex _Complex macro
47 #define CMPLX(x, y) ((double complex){ x, y })
48 #define CMPLXF(x, y) ((float complex){ x, y })
49 #define CMPLXL(x, y) ((long double complex){ x, y })
56 double complex cacos(double complex __z) __INTRODUCED_IN(23);
57 float complex cacosf(float complex __z) __INTRODUCED_IN(23);
58 long double complex cacosl(long double complex __z) __RENAME_LDBL(cacos, 23, 26)
    [all...]
  /bionic/tests/headers/posix/
complex_h.c 29 #include <complex.h>
33 #if !defined(complex)
34 #error complex
54 FUNCTION(cabs, double (*f)(double complex));
55 FUNCTION(cabsf, float (*f)(float complex));
56 FUNCTION(cabsl, long double (*f)(long double complex));
58 FUNCTION(cacos, double complex (*f)(double complex));
59 FUNCTION(cacosf, float complex (*f)(float complex));
    [all...]
  /external/libcxx/test/std/numerics/complex.number/complex.value.ops/
conj.pass.cpp 10 // <complex>
13 // complex<T>
14 // conj(const complex<T>& x);
16 #include <complex>
21 test(const std::complex<T>& z, std::complex<T> x)
30 test(std::complex<T>(1, 2), std::complex<T>(1, -2));
31 test(std::complex<T>(-1, 2), std::complex<T>(-1, -2))
    [all...]
  /bionic/tests/
tgmath_test.c 19 float complex tgmath_h_test_function() {
20 float complex z = 1 + 0.5*I;
  /external/eigen/Eigen/src/Core/arch/CUDA/
Complex.h 21 // Many std::complex methods such as operator+, operator-, operator* and
24 // compile. Here, we manually specialize these functors for complex types when
28 template<typename T> struct scalar_sum_op<const std::complex<T>, const std::complex<T> > : binary_op_base<const std::complex<T>, const std::complex<T> > {
29 typedef typename std::complex<T> result_type;
32 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE std::complex<T> operator() (const std::complex<T>& a, const std::complex<T>& b) const
    [all...]
  /external/libcxx/test/std/numerics/complex.number/complex.special/
double_long_double_implicit.fail.cpp 10 // <complex>
12 // template<> class complex<double>
15 // explicit constexpr complex(const complex<long double>&);
18 #include <complex>
23 const std::complex<long double> cd(2.5, 3.5);
24 std::complex<double> cf = cd;
float_double_implicit.fail.cpp 10 // <complex>
12 // template<> class complex<float>
15 // explicit constexpr complex(const complex<double>&);
18 #include <complex>
23 const std::complex<double> cd(2.5, 3.5);
24 std::complex<float> cf = cd;
float_long_double_implicit.fail.cpp 10 // <complex>
12 // template<> class complex<float>
15 // explicit constexpr complex(const complex<long double>&);
18 #include <complex>
23 const std::complex<long double> cd(2.5, 3.5);
24 std::complex<float> cf = cd;
  /external/eigen/blas/f2c/
r_cnjg.c 3 void r_cnjg(complex *r, complex *z) {
  /external/libcxx/test/libcxx/depr/depr.c.headers/
complex.h.pass.cpp 10 // <complex.h>
12 #include <complex.h>
20 std::complex<double> d;
  /external/libcxx/test/std/utilities/utility/pairs/pair.astuple/
pairs.by.type2.fail.cpp 12 #include <complex>
18 typedef std::complex<float> cf;

Completed in 1178 milliseconds

1 2 3 4 5 6 7 8 91011>>