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

1 2 3 4 5 6 7 8 91011>>

  /external/stlport/test/unit/
complex_header_test.cpp 8 #include <complex>
  /ndk/tests/device/test-gnustl-full/unit/
complex_header_test.cpp 8 #include <complex>
  /ndk/tests/device/test-stlport/unit/
complex_header_test.cpp 8 #include <complex>
  /bionic/libm/include/
complex.h 46 #define complex _Complex macro
51 double cabs(double complex);
52 float cabsf(float complex);
53 long double cabsl(long double complex);
54 double carg(double complex);
55 float cargf(float complex);
56 long double cargl(long double complex);
57 double complex ccos(double complex);
58 float complex ccosf(float complex)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/
cases.h 10 // <complex>
17 #include <complex>
20 std::complex<double> x[] =
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 29 #include <complex.h>
32 creal(double complex z)
s_crealf.c 29 #include <complex.h>
32 crealf(float complex z)
s_creall.c 29 #include <complex.h>
32 creall(long double complex z)
s_conj.c 29 #include <complex.h>
33 double complex
34 conj(double complex z)
s_conjf.c 29 #include <complex.h>
33 float complex
34 conjf(float complex z)
s_conjl.c 29 #include <complex.h>
33 long double complex
34 conjl(long double complex z)
s_cimag.c 29 #include <complex.h>
33 cimag(double complex z)
s_cimagf.c 29 #include <complex.h>
33 cimagf(float complex z)
s_cimagl.c 29 #include <complex.h>
33 cimagl(long double complex z)
  /ndk/sources/cxx-stl/llvm-libc++/test/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...]
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
complex.h.pass.cpp 10 // <complex.h>
12 #include <complex.h>
20 std::complex<double> d;
  /ndk/sources/cxx-stl/llvm-libc++/test/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/stlport/stlport/stl/
_complex.h 21 // This header declares the template class complex, as described in
22 // in the draft C++ standard. Single-precision complex numbers
23 // are complex<float>, double-precision are complex<double>, and
24 // quad precision are complex<long double>.
26 // Note that the template class complex is declared within namespace
36 struct complex { struct
38 typedef complex<_Tp> _Self;
41 complex() : _M_re(0), _M_im(0) {} function in struct:complex
42 complex(const value_type& __x function in struct:complex
44 complex(const value_type& __x, const value_type& __y) function in struct:complex
46 complex(const _Self& __z) function in struct:complex
57 explicit complex(const complex<_Tp2>& __z) function in struct:complex
180 struct _STLP_CLASS_DECLSPEC complex<float> { struct
185 complex(value_type __x = 0.0f, value_type __y = 0.0f) function in struct:complex
188 complex(const complex<float>& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} function in struct:complex
318 struct _STLP_CLASS_DECLSPEC complex<double> { struct
324 complex(value_type __x = 0.0, value_type __y = 0.0) function in struct:complex
327 complex(const complex<double>& __z) function in struct:complex
458 struct _STLP_CLASS_DECLSPEC complex<long double> { struct
463 complex(value_type __x = 0.0l, value_type __y = 0.0l) function in struct:complex
466 complex(const complex<long double>& __z) function in struct:complex
600 inline complex<float>::complex(const complex<double>& __z) function in class:complex
602 inline complex<double>::complex(const complex<float>& __z) function in class:complex
605 inline complex<float>::complex(const complex<long double>& __z) function in class:complex
607 inline complex<double>::complex(const complex<long double>& __z) function in class:complex
609 inline complex<long double>::complex(const complex<float>& __z) function in class:complex
611 inline complex<long double>::complex(const complex<double>& __z) function in class:complex
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_complex.h 21 // This header declares the template class complex, as described in
22 // in the draft C++ standard. Single-precision complex numbers
23 // are complex<float>, double-precision are complex<double>, and
24 // quad precision are complex<long double>.
26 // Note that the template class complex is declared within namespace
36 struct complex { struct
38 typedef complex<_Tp> _Self;
41 complex() : _M_re(0), _M_im(0) {} function in struct:complex
42 complex(const value_type& __x function in struct:complex
44 complex(const value_type& __x, const value_type& __y) function in struct:complex
46 complex(const _Self& __z) function in struct:complex
57 explicit complex(const complex<_Tp2>& __z) function in struct:complex
180 struct _STLP_CLASS_DECLSPEC complex<float> { struct
185 complex(value_type __x = 0.0f, value_type __y = 0.0f) function in struct:complex
188 complex(const complex<float>& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} function in struct:complex
318 struct _STLP_CLASS_DECLSPEC complex<double> { struct
324 complex(value_type __x = 0.0, value_type __y = 0.0) function in struct:complex
327 complex(const complex<double>& __z) function in struct:complex
458 struct _STLP_CLASS_DECLSPEC complex<long double> { struct
463 complex(value_type __x = 0.0l, value_type __y = 0.0l) function in struct:complex
466 complex(const complex<long double>& __z) function in struct:complex
600 inline complex<float>::complex(const complex<double>& __z) function in class:complex
602 inline complex<double>::complex(const complex<float>& __z) function in class:complex
605 inline complex<float>::complex(const complex<long double>& __z) function in class:complex
607 inline complex<double>::complex(const complex<long double>& __z) function in class:complex
609 inline complex<long double>::complex(const complex<float>& __z) function in class:complex
611 inline complex<long double>::complex(const complex<double>& __z) function in class:complex
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_complex.h 21 // This header declares the template class complex, as described in
22 // in the draft C++ standard. Single-precision complex numbers
23 // are complex<float>, double-precision are complex<double>, and
24 // quad precision are complex<long double>.
26 // Note that the template class complex is declared within namespace
36 struct complex { struct
38 typedef complex<_Tp> _Self;
41 complex() : _M_re(0), _M_im(0) {} function in struct:complex
42 complex(const value_type& __x function in struct:complex
44 complex(const value_type& __x, const value_type& __y) function in struct:complex
46 complex(const _Self& __z) function in struct:complex
57 explicit complex(const complex<_Tp2>& __z) function in struct:complex
180 struct _STLP_CLASS_DECLSPEC complex<float> { struct
185 complex(value_type __x = 0.0f, value_type __y = 0.0f) function in struct:complex
188 complex(const complex<float>& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} function in struct:complex
318 struct _STLP_CLASS_DECLSPEC complex<double> { struct
324 complex(value_type __x = 0.0, value_type __y = 0.0) function in struct:complex
327 complex(const complex<double>& __z) function in struct:complex
458 struct _STLP_CLASS_DECLSPEC complex<long double> { struct
463 complex(value_type __x = 0.0l, value_type __y = 0.0l) function in struct:complex
466 complex(const complex<long double>& __z) function in struct:complex
600 inline complex<float>::complex(const complex<double>& __z) function in class:complex
602 inline complex<double>::complex(const complex<float>& __z) function in class:complex
605 inline complex<float>::complex(const complex<long double>& __z) function in class:complex
607 inline complex<double>::complex(const complex<long double>& __z) function in class:complex
609 inline complex<long double>::complex(const complex<float>& __z) function in class:complex
611 inline complex<long double>::complex(const complex<double>& __z) function in class:complex
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_complex.h 21 // This header declares the template class complex, as described in
22 // in the draft C++ standard. Single-precision complex numbers
23 // are complex<float>, double-precision are complex<double>, and
24 // quad precision are complex<long double>.
26 // Note that the template class complex is declared within namespace
36 struct complex { struct
38 typedef complex<_Tp> _Self;
41 complex() : _M_re(0), _M_im(0) {} function in struct:complex
42 complex(const value_type& __x function in struct:complex
44 complex(const value_type& __x, const value_type& __y) function in struct:complex
46 complex(const _Self& __z) function in struct:complex
57 explicit complex(const complex<_Tp2>& __z) function in struct:complex
180 struct _STLP_CLASS_DECLSPEC complex<float> { struct
185 complex(value_type __x = 0.0f, value_type __y = 0.0f) function in struct:complex
188 complex(const complex<float>& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} function in struct:complex
318 struct _STLP_CLASS_DECLSPEC complex<double> { struct
324 complex(value_type __x = 0.0, value_type __y = 0.0) function in struct:complex
327 complex(const complex<double>& __z) function in struct:complex
458 struct _STLP_CLASS_DECLSPEC complex<long double> { struct
463 complex(value_type __x = 0.0l, value_type __y = 0.0l) function in struct:complex
466 complex(const complex<long double>& __z) function in struct:complex
600 inline complex<float>::complex(const complex<double>& __z) function in class:complex
602 inline complex<double>::complex(const complex<float>& __z) function in class:complex
605 inline complex<float>::complex(const complex<long double>& __z) function in class:complex
607 inline complex<double>::complex(const complex<long double>& __z) function in class:complex
609 inline complex<long double>::complex(const complex<float>& __z) function in class:complex
611 inline complex<long double>::complex(const complex<double>& __z) function in class:complex
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_complex.h 21 // This header declares the template class complex, as described in
22 // in the draft C++ standard. Single-precision complex numbers
23 // are complex<float>, double-precision are complex<double>, and
24 // quad precision are complex<long double>.
26 // Note that the template class complex is declared within namespace
36 struct complex { struct
38 typedef complex<_Tp> _Self;
41 complex() : _M_re(0), _M_im(0) {} function in struct:complex
42 complex(const value_type& __x function in struct:complex
44 complex(const value_type& __x, const value_type& __y) function in struct:complex
46 complex(const _Self& __z) function in struct:complex
57 explicit complex(const complex<_Tp2>& __z) function in struct:complex
180 struct _STLP_CLASS_DECLSPEC complex<float> { struct
185 complex(value_type __x = 0.0f, value_type __y = 0.0f) function in struct:complex
188 complex(const complex<float>& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} function in struct:complex
318 struct _STLP_CLASS_DECLSPEC complex<double> { struct
324 complex(value_type __x = 0.0, value_type __y = 0.0) function in struct:complex
327 complex(const complex<double>& __z) function in struct:complex
458 struct _STLP_CLASS_DECLSPEC complex<long double> { struct
463 complex(value_type __x = 0.0l, value_type __y = 0.0l) function in struct:complex
466 complex(const complex<long double>& __z) function in struct:complex
600 inline complex<float>::complex(const complex<double>& __z) function in class:complex
602 inline complex<double>::complex(const complex<float>& __z) function in class:complex
605 inline complex<float>::complex(const complex<long double>& __z) function in class:complex
607 inline complex<double>::complex(const complex<long double>& __z) function in class:complex
609 inline complex<long double>::complex(const complex<float>& __z) function in class:complex
611 inline complex<long double>::complex(const complex<double>& __z) function in class:complex
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_complex.h 21 // This header declares the template class complex, as described in
22 // in the draft C++ standard. Single-precision complex numbers
23 // are complex<float>, double-precision are complex<double>, and
24 // quad precision are complex<long double>.
26 // Note that the template class complex is declared within namespace
36 struct complex { struct
38 typedef complex<_Tp> _Self;
41 complex() : _M_re(0), _M_im(0) {} function in struct:complex
42 complex(const value_type& __x function in struct:complex
44 complex(const value_type& __x, const value_type& __y) function in struct:complex
46 complex(const _Self& __z) function in struct:complex
57 explicit complex(const complex<_Tp2>& __z) function in struct:complex
180 struct _STLP_CLASS_DECLSPEC complex<float> { struct
185 complex(value_type __x = 0.0f, value_type __y = 0.0f) function in struct:complex
188 complex(const complex<float>& __z) : _M_re(__z._M_re), _M_im(__z._M_im) {} function in struct:complex
318 struct _STLP_CLASS_DECLSPEC complex<double> { struct
324 complex(value_type __x = 0.0, value_type __y = 0.0) function in struct:complex
327 complex(const complex<double>& __z) function in struct:complex
458 struct _STLP_CLASS_DECLSPEC complex<long double> { struct
463 complex(value_type __x = 0.0l, value_type __y = 0.0l) function in struct:complex
466 complex(const complex<long double>& __z) function in struct:complex
600 inline complex<float>::complex(const complex<double>& __z) function in class:complex
602 inline complex<double>::complex(const complex<float>& __z) function in class:complex
605 inline complex<float>::complex(const complex<long double>& __z) function in class:complex
607 inline complex<double>::complex(const complex<long double>& __z) function in class:complex
609 inline complex<long double>::complex(const complex<float>& __z) function in class:complex
611 inline complex<long double>::complex(const complex<double>& __z) function in class:complex
    [all...]

Completed in 487 milliseconds

1 2 3 4 5 6 7 8 91011>>