HomeSort by relevance Sort by last modified time
    Searched full:complex (Results 1 - 25 of 3179) 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
  /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...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
curpos-err.errwarn 1 -:15: error: data expression too complex
2 -:21: error: data expression too complex
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/tests/
value-err.errwarn 1 -:2: error: effective address too complex
2 -:3: error: immediate expression too complex
3 -:8: error: data expression too complex
  /external/eigen/blas/
complexdots.f 0 COMPLEX FUNCTION CDOTC(N,CX,INCX,CY,INCY)
3 COMPLEX CX(*),CY(*)
4 COMPLEX RES
12 COMPLEX FUNCTION CDOTU(N,CX,INCX,CY,INCY)
14 COMPLEX CX(*),CY(*)
15 COMPLEX RES
23 DOUBLE COMPLEX FUNCTION ZDOTC(N,CX,INCX,CY,INCY)
25 DOUBLE COMPLEX CX(*),CY(*)
26 DOUBLE COMPLEX RES
34 DOUBLE COMPLEX FUNCTION ZDOTU(N,CX,INCX,CY,INCY
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
complex 2 //===--------------------------- complex ----------------------------------===//
15 complex synopsis
21 class complex
26 complex(const T& re = T(), const T& im = T());
27 complex(const complex&);
28 template<class X> complex(const complex<X>&);
36 complex<T>& operator= (const T&);
37 complex<T>& operator+=(const T&)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/
complex 1 // The template and inlines for the -*- C++ -*- complex number classes.
27 /** @file include/complex
32 // ISO C++ 14882: 26.2 Complex Numbers
52 * @defgroup complex_numbers Complex Numbers
55 * Classes and functions for complex numbers.
60 template<typename _Tp> class complex;
61 template<> class complex<float>;
62 template<> class complex<double>;
63 template<> class complex<long double>;
66 template<typename _Tp> _Tp abs(const complex<_Tp>&)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/
complex 1 // The template and inlines for the -*- C++ -*- complex number classes.
27 /** @file include/complex
32 // ISO C++ 14882: 26.2 Complex Numbers
52 * @defgroup complex_numbers Complex Numbers
55 * Classes and functions for complex numbers.
60 template<typename _Tp> class complex;
61 template<> class complex<float>;
62 template<> class complex<double>;
63 template<> class complex<long double>;
66 template<typename _Tp> _Tp abs(const complex<_Tp>&)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/
complex 1 // The template and inlines for the -*- C++ -*- complex number classes.
27 /** @file include/complex
32 // ISO C++ 14882: 26.2 Complex Numbers
52 * @defgroup complex_numbers Complex Numbers
55 * Classes and functions for complex numbers.
60 template<typename _Tp> class complex;
61 template<> class complex<float>;
62 template<> class complex<double>;
63 template<> class complex<long double>;
66 template<typename _Tp> _Tp abs(const complex<_Tp>&)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/
complex 1 // The template and inlines for the -*- C++ -*- complex number classes.
27 /** @file include/complex
32 // ISO C++ 14882: 26.2 Complex Numbers
52 * @defgroup complex_numbers Complex Numbers
55 * Classes and functions for complex numbers.
60 template<typename _Tp> class complex;
61 template<> class complex<float>;
62 template<> class complex<double>;
63 template<> class complex<long double>;
66 template<typename _Tp> _Tp abs(const complex<_Tp>&)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/
complex 1 // The template and inlines for the -*- C++ -*- complex number classes.
27 /** @file include/complex
32 // ISO C++ 14882: 26.2 Complex Numbers
52 * @defgroup complex_numbers Complex Numbers
55 * Classes and functions for complex numbers.
60 template<typename _Tp> class complex;
61 template<> class complex<float>;
62 template<> class complex<double>;
63 template<> class complex<long double>;
66 template<typename _Tp> _Tp abs(const complex<_Tp>&)
    [all...]
  /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...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/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/9/sources/cxx-stl/gnu-libstdc++/4.8/include/
complex 1 // The template and inlines for the -*- C++ -*- complex number classes.
25 /** @file include/complex
30 // ISO C++ 14882: 26.2 Complex Numbers
47 // Get rid of a macro possibly defined in <complex.h>
48 #undef complex
55 * @defgroup complex_numbers Complex Numbers
58 * Classes and functions for complex numbers.
63 template<typename _Tp> class complex;
64 template<> class complex<float>;
65 template<> class complex<double>
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
complex 1 // The template and inlines for the -*- C++ -*- complex number classes.
27 /** @file include/complex
32 // ISO C++ 14882: 26.2 Complex Numbers
54 * @defgroup complex_numbers Complex Numbers
57 * Classes and functions for complex numbers.
62 template<typename _Tp> class complex;
63 template<> class complex<float>;
64 template<> class complex<double>;
65 template<> class complex<long double>;
68 template<typename _Tp> _Tp abs(const complex<_Tp>&)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
complex 1 // The template and inlines for the -*- C++ -*- complex number classes.
27 /** @file include/complex
32 // ISO C++ 14882: 26.2 Complex Numbers
54 * @defgroup complex_numbers Complex Numbers
57 * Classes and functions for complex numbers.
62 template<typename _Tp> class complex;
63 template<> class complex<float>;
64 template<> class complex<double>;
65 template<> class complex<long double>;
68 template<typename _Tp> _Tp abs(const complex<_Tp>&)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
complex 1 // The template and inlines for the -*- C++ -*- complex number classes.
27 /** @file include/complex
32 // ISO C++ 14882: 26.2 Complex Numbers
54 * @defgroup complex_numbers Complex Numbers
57 * Classes and functions for complex numbers.
62 template<typename _Tp> class complex;
63 template<> class complex<float>;
64 template<> class complex<double>;
65 template<> class complex<long double>;
68 template<typename _Tp> _Tp abs(const complex<_Tp>&)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
complex 1 // The template and inlines for the -*- C++ -*- complex number classes.
27 /** @file include/complex
32 // ISO C++ 14882: 26.2 Complex Numbers
54 * @defgroup complex_numbers Complex Numbers
57 * Classes and functions for complex numbers.
62 template<typename _Tp> class complex;
63 template<> class complex<float>;
64 template<> class complex<double>;
65 template<> class complex<long double>;
68 template<typename _Tp> _Tp abs(const complex<_Tp>&)
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/
complex 1 // The template and inlines for the -*- C++ -*- complex number classes.
27 /** @file include/complex
32 // ISO C++ 14882: 26.2 Complex Numbers
54 * @defgroup complex_numbers Complex Numbers
57 * Classes and functions for complex numbers.
62 template<typename _Tp> class complex;
63 template<> class complex<float>;
64 template<> class complex<double>;
65 template<> class complex<long double>;
68 template<typename _Tp> _Tp abs(const complex<_Tp>&)
    [all...]

Completed in 1322 milliseconds

1 2 3 4 5 6 7 8 91011>>