HomeSort by relevance Sort by last modified time
    Searched defs:imag (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/python/cpython3/Include/
complexobject.h 12 double imag; member in struct:__anon33122
47 PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
complexobject.h 11 double imag; member in struct:__anon4312
51 PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
complexobject.h 11 double imag; member in struct:__anon4619
51 PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
  /external/compiler-rt/lib/builtins/ppc/
divtc3.c 41 DD imag = { .ld = __gcc_qdiv(imagNumerator, denom) }; local
45 imag.s.hi = crt_scalbn(imag.s.hi, -ilogbw);
46 imag.s.lo = crt_scalbn(imag.s.lo, -ilogbw);
48 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi))
59 imag.s.hi = crt_copysign(CRT_INFINITY,cDD.s.hi) * bDD.s.hi;
60 imag.s.lo = 0.0;
70 imag.s.hi = CRT_INFINITY * (bDD.s.hi*cDD.s.hi - aDD.s.hi*dDD.s.hi);
71 imag.s.lo = 0.0
    [all...]
multc3.c 29 DD imag = { .ld = __gcc_qadd(ad,bc) }; local
31 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi))
80 imag.s.hi = CRT_INFINITY * (aDD.s.hi*dDD.s.hi + bDD.s.hi*cDD.s.hi);
81 imag.s.lo = 0.0;
87 __imag__ z = imag.ld;
  /external/eigen/Eigen/src/plugins/
CommonCwiseUnaryOps.h 30 /** \internal the return type of imag() const */
32 /** \internal the return type of imag() */
83 /// \sa imag()
90 EIGEN_DOC_UNARY_ADDONS(imag,imaginary part function)
95 imag() const { return ImagReturnType(derived()); } function
151 /// \sa imag()
158 EIGEN_DOC_UNARY_ADDONS(imag,imaginary part function)
163 imag() { return NonConstImagReturnType(derived()); } function
  /external/python/cpython2/Include/
complexobject.h 11 double imag; member in struct:__anon32560
51 PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
  /prebuilts/gdb/darwin-x86/include/python2.7/
complexobject.h 11 double imag; member in struct:__anon66451
51 PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
  /prebuilts/gdb/linux-x86/include/python2.7/
complexobject.h 11 double imag; member in struct:__anon66573
51 PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
complexobject.h 11 double imag; member in struct:__anon966
51 PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
complexobject.h 11 double imag; member in struct:__anon1089
51 PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
  /external/eigen/test/
exceptions.cpp 73 ScalarWithExceptions imag(const ScalarWithExceptions & ) { return 0; } function
  /external/libxaac/decoder/
ixheaacd_hybrid.c 103 WORD32 real, imag; local
112 imag = ixheaacd_shl32(
118 ixheaacd_mult32x16in32(ixheaacd_add32_sat(imag, real), tcom), 1);
120 ixheaacd_mult32x16in32(ixheaacd_sub32_sat(imag, real), tcom), 1);
126 imag = ixheaacd_shl32(
132 ixheaacd_shl32(ixheaacd_add32_sat(ixheaacd_mult32x16in32(imag, tcos),
136 ixheaacd_shl32(ixheaacd_sub32_sat(ixheaacd_mult32x16in32(imag, tsin),
152 imag = ixheaacd_shl32(
158 ixheaacd_shl32(ixheaacd_sub32_sat(ixheaacd_mult32x16in32(imag, tcos),
162 ixheaacd_mult32x16in32(imag, tsin)
    [all...]
  /external/aac/libFDK/include/
qmf_pcm.h 135 FIXP_DBL *RESTRICT imagSlot, /*!< Input: Pointer to imag Slot */
167 FIXP_DBL imag = imagSlot[j]; /* no_channels-1 .. 0 */ local
198 sta[0] = FX_DBL2FX_QSS(fMultAddDiv2(FX_QSS2FX_DBL(sta[1]), p_flt[4], imag));
201 sta[2] = FX_DBL2FX_QSS(fMultAddDiv2(FX_QSS2FX_DBL(sta[3]), p_flt[3], imag));
204 sta[4] = FX_DBL2FX_QSS(fMultAddDiv2(FX_QSS2FX_DBL(sta[5]), p_flt[2], imag));
207 sta[6] = FX_DBL2FX_QSS(fMultAddDiv2(FX_QSS2FX_DBL(sta[7]), p_flt[1], imag));
210 sta[8] = FX_DBL2FX_QSS(fMultDiv2(p_flt[0], imag));
227 FIXP_DBL *RESTRICT imagSlot, /*!< Input: Pointer to imag Slot */
258 FIXP_DBL imag = imagSlot[j]; /* no_channels-1 .. 0 */ local
286 sta[0] = sta[1] + FX_DBL2FX_QSS(fMultDiv2(p_flt[4], imag));
    [all...]
  /external/clang/test/Analysis/
MPIMock.h 16 namespace std { template<class T> struct complex { T real; T imag; }; } member in struct:std::complex
  /prebuilts/go/darwin-x86/test/
rename.go 31 imag +
77 imag = 14
76 imag = 14 const
rename1.go 35 imag = 14
34 imag = 14 const
  /prebuilts/go/linux-x86/test/
rename.go 31 imag +
77 imag = 14
76 imag = 14 const
rename1.go 35 imag = 14
34 imag = 14 const
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
numbers.py 37 In short, those are: a conversion to complex, .real, .imag, +, -,
65 def imag(self): member in class:Complex
259 def imag(self): member in class:Real
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
numbers.py 37 In short, those are: a conversion to complex, .real, .imag, +, -,
65 def imag(self): member in class:Complex
259 def imag(self): member in class:Real
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 58 * - internal::conj, internal::real, internal::imag, numext::abs2.
546 inline typename DerType::Scalar imag(const AutoDiffScalar<DerType>&) { return 0.; } function in namespace:Eigen
  /external/python/cpython2/Lib/
numbers.py 37 In short, those are: a conversion to complex, .real, .imag, +, -,
65 def imag(self): member in class:Complex
259 def imag(self): member in class:Real
  /external/python/cpython3/Lib/
numbers.py 35 In short, those are: a conversion to complex, .real, .imag, +, -,
64 def imag(self): member in class:Complex
256 def imag(self): member in class:Real
  /prebuilts/gdb/darwin-x86/lib/python2.7/
numbers.py 37 In short, those are: a conversion to complex, .real, .imag, +, -,
65 def imag(self): member in class:Complex
259 def imag(self): member in class:Real

Completed in 1114 milliseconds

1 2 3