HomeSort by relevance Sort by last modified time
    Searched full:complex (Results 26 - 50 of 2438) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
complex 1 // TR1 complex -*- C++ -*-
25 /** @file tr1_impl/complex
40 template<typename _Tp> std::complex<_Tp> acos(const std::complex<_Tp>&);
41 template<typename _Tp> std::complex<_Tp> asin(const std::complex<_Tp>&);
42 template<typename _Tp> std::complex<_Tp> atan(const std::complex<_Tp>&);
44 template<typename _Tp> std::complex<_Tp> acosh(const std::complex<_Tp>&)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
complex 1 // TR1 complex -*- C++ -*-
25 /** @file tr1_impl/complex
40 template<typename _Tp> std::complex<_Tp> acos(const std::complex<_Tp>&);
41 template<typename _Tp> std::complex<_Tp> asin(const std::complex<_Tp>&);
42 template<typename _Tp> std::complex<_Tp> atan(const std::complex<_Tp>&);
44 template<typename _Tp> std::complex<_Tp> acosh(const std::complex<_Tp>&)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/
complex 1 // TR1 complex -*- C++ -*-
25 /** @file tr1_impl/complex
40 template<typename _Tp> std::complex<_Tp> acos(const std::complex<_Tp>&);
41 template<typename _Tp> std::complex<_Tp> asin(const std::complex<_Tp>&);
42 template<typename _Tp> std::complex<_Tp> atan(const std::complex<_Tp>&);
44 template<typename _Tp> std::complex<_Tp> acosh(const std::complex<_Tp>&)
    [all...]
  /external/stlport/src/
complex.cpp 23 #include <complex>
36 // Complex division and square roots.
40 _STLP_DECLSPEC float _STLP_CALL abs(const complex<float>& __z)
43 _STLP_DECLSPEC double _STLP_CALL abs(const complex<double>& __z)
48 _STLP_DECLSPEC long double _STLP_CALL abs(const complex<long double>& __z)
55 _STLP_DECLSPEC float _STLP_CALL arg(const complex<float>& __z)
59 _STLP_DECLSPEC double _STLP_CALL arg(const complex<double>& __z)
64 _STLP_DECLSPEC long double _STLP_CALL arg(const complex<long double>& __z)
68 // Construct a complex number from polar representation
70 _STLP_DECLSPEC complex<float> _STLP_CALL polar(const float& __rho, const float& __phi
    [all...]
complex_trig.cpp 21 // Trigonometric and hyperbolic functions for complex<float>,
22 // complex<double>, and complex<long double>
23 #include <complex>
68 static complex<_Tp> sinT(const complex<_Tp>& z) {
69 return complex<_Tp>(::sin(z._M_re) * ::cosh(z._M_im),
73 _STLP_DECLSPEC complex<float> _STLP_CALL sin(const complex<float>& z)
76 _STLP_DECLSPEC complex<double> _STLP_CALL sin(const complex<double>& z
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
complex.cpp 23 #include <complex>
36 // Complex division and square roots.
40 _STLP_DECLSPEC float _STLP_CALL abs(const complex<float>& __z)
43 _STLP_DECLSPEC double _STLP_CALL abs(const complex<double>& __z)
48 _STLP_DECLSPEC long double _STLP_CALL abs(const complex<long double>& __z)
55 _STLP_DECLSPEC float _STLP_CALL arg(const complex<float>& __z)
59 _STLP_DECLSPEC double _STLP_CALL arg(const complex<double>& __z)
64 _STLP_DECLSPEC long double _STLP_CALL arg(const complex<long double>& __z)
68 // Construct a complex number from polar representation
70 _STLP_DECLSPEC complex<float> _STLP_CALL polar(const float& __rho, const float& __phi
    [all...]
complex_trig.cpp 21 // Trigonometric and hyperbolic functions for complex<float>,
22 // complex<double>, and complex<long double>
23 #include <complex>
68 static complex<_Tp> sinT(const complex<_Tp>& z) {
69 return complex<_Tp>(::sin(z._M_re) * ::cosh(z._M_im),
73 _STLP_DECLSPEC complex<float> _STLP_CALL sin(const complex<float>& z)
76 _STLP_DECLSPEC complex<double> _STLP_CALL sin(const complex<double>& z
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.ops/
stream_input.pass.cpp 10 // <complex>
14 // operator>>(basic_istream<charT, traits>& is, complex<T>& x);
16 #include <complex>
24 std::complex<double> c;
26 assert(c == std::complex<double>(5, 0));
31 std::complex<double> c;
33 assert(c == std::complex<double>(5, 0));
38 std::complex<double> c;
40 assert(c == std::complex<double>(5, 0));
45 std::complex<double> c
    [all...]
  /external/eigen/doc/examples/
class_CwiseBinaryOp.cpp 9 typedef complex<Scalar> result_type;
10 complex<Scalar> operator()(const Scalar& a, const Scalar& b) const { return complex<Scalar>(a,b); }
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.transcendentals/
tan.pass.cpp 10 // <complex>
13 // complex<T>
14 // tan(const complex<T>& x);
16 #include <complex>
23 test(const std::complex<T>& c, std::complex<T> x)
32 test(std::complex<T>(0, 0), std::complex<T>(0, 0));
33 test(std::complex<T>(10000, -10000), std::complex<T>(0, -1))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/complex.value.ops/
proj.pass.cpp 10 // <complex>
13 // complex<T>
14 // proj(const complex<T>& x);
16 #include <complex>
23 test(const std::complex<T>& z, std::complex<T> x)
32 test(std::complex<T>(1, 2), std::complex<T>(1, 2));
33 test(std::complex<T>(-1, 2), std::complex<T>(-1, 2))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/
complex 1 // TR1 complex -*- C++ -*-
26 /** @file tr1/complex
35 #include <complex>
53 template<typename _Tp> std::complex<_Tp> acos(const std::complex<_Tp>&);
54 template<typename _Tp> std::complex<_Tp> asin(const std::complex<_Tp>&);
55 template<typename _Tp> std::complex<_Tp> atan(const std::complex<_Tp>&);
58 template<typename _Tp> std::complex<_Tp> acosh(const std::complex<_Tp>&)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/
complex 1 // TR1 complex -*- C++ -*-
26 /** @file tr1/complex
35 #include <complex>
53 template<typename _Tp> std::complex<_Tp> acos(const std::complex<_Tp>&);
54 template<typename _Tp> std::complex<_Tp> asin(const std::complex<_Tp>&);
55 template<typename _Tp> std::complex<_Tp> atan(const std::complex<_Tp>&);
58 template<typename _Tp> std::complex<_Tp> acosh(const std::complex<_Tp>&)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
complex 1 // TR1 complex -*- C++ -*-
26 /** @file tr1/complex
35 #include <complex>
53 template<typename _Tp> std::complex<_Tp> acos(const std::complex<_Tp>&);
54 template<typename _Tp> std::complex<_Tp> asin(const std::complex<_Tp>&);
55 template<typename _Tp> std::complex<_Tp> atan(const std::complex<_Tp>&);
58 template<typename _Tp> std::complex<_Tp> acosh(const std::complex<_Tp>&)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
complex 1 // TR1 complex -*- C++ -*-
26 /** @file tr1/complex
35 #include <complex>
53 template<typename _Tp> std::complex<_Tp> acos(const std::complex<_Tp>&);
54 template<typename _Tp> std::complex<_Tp> asin(const std::complex<_Tp>&);
55 template<typename _Tp> std::complex<_Tp> atan(const std::complex<_Tp>&);
58 template<typename _Tp> std::complex<_Tp> acosh(const std::complex<_Tp>&)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
w_cabsf.c 13 #include <complex.h>
19 float complex z;
  /external/clang/test/CodeGen/
2002-01-24-ComplexSpaceInType.c 4 // %Array = uninitialized global [10 x %complex int]
6 // which caused problems because of the space int the complex int type
  /external/stlport/stlport/
complex 28 // This header declares the template class complex, as described in
29 // in the C++ Standard. Single-precision complex numbers
30 // are complex<float>, double-precision are complex<double>, and
31 // quad precision are complex<long double>.
33 // Note that the template class complex is declared within namespace
42 # include_next <complex>
44 # include _STLP_NATIVE_HEADER(complex)
  /ndk/sources/cxx-stl/stlport/stlport/
complex 28 // This header declares the template class complex, as described in
29 // in the C++ Standard. Single-precision complex numbers
30 // are complex<float>, double-precision are complex<double>, and
31 // quad precision are complex<long double>.
33 // Note that the template class complex is declared within namespace
42 # include_next <complex>
44 # include _STLP_NATIVE_HEADER(complex)
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/
complex 28 // This header declares the template class complex, as described in
29 // in the C++ Standard. Single-precision complex numbers
30 // are complex<float>, double-precision are complex<double>, and
31 // quad precision are complex<long double>.
33 // Note that the template class complex is declared within namespace
42 # include_next <complex>
44 # include _STLP_NATIVE_HEADER(complex)
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/
complex 28 // This header declares the template class complex, as described in
29 // in the C++ Standard. Single-precision complex numbers
30 // are complex<float>, double-precision are complex<double>, and
31 // quad precision are complex<long double>.
33 // Note that the template class complex is declared within namespace
42 # include_next <complex>
44 # include _STLP_NATIVE_HEADER(complex)
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/
complex 28 // This header declares the template class complex, as described in
29 // in the C++ Standard. Single-precision complex numbers
30 // are complex<float>, double-precision are complex<double>, and
31 // quad precision are complex<long double>.
33 // Note that the template class complex is declared within namespace
42 # include_next <complex>
44 # include _STLP_NATIVE_HEADER(complex)
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/
complex 28 // This header declares the template class complex, as described in
29 // in the C++ Standard. Single-precision complex numbers
30 // are complex<float>, double-precision are complex<double>, and
31 // quad precision are complex<long double>.
33 // Note that the template class complex is declared within namespace
42 # include_next <complex>
44 # include _STLP_NATIVE_HEADER(complex)
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/complex.number/cmplx.over/
conj.pass.cpp 10 // <complex>
12 // template<class T> complex<T> conj(const complex<T>&);
13 // complex<long double> conj(long double);
14 // complex<double> conj(double);
15 // template<Integral T> complex<double> conj(T);
16 // complex<float> conj(float);
18 #include <complex>
28 static_assert((std::is_same<decltype(std::conj(x)), std::complex<double> >::value), "");
29 assert(std::conj(x) == conj(std::complex<double>(x, 0)))
    [all...]
proj.pass.cpp 10 // <complex>
12 // template<class T> complex<T> proj(const complex<T>&);
13 // complex<long double> proj(long double);
14 // complex<double> proj(double);
15 // template<Integral T> complex<double> proj(T);
16 // complex<float> proj(float);
18 #include <complex>
28 static_assert((std::is_same<decltype(std::proj(x)), std::complex<double> >::value), "");
29 assert(std::proj(x) == proj(std::complex<double>(x, 0)))
    [all...]

Completed in 482 milliseconds

12 3 4 5 6 7 8 91011>>