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

1 2

  /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 34 /** \internal the return type of imag() const */
36 /** \internal the return type of imag() */
108 * \sa imag() */
116 imag() const { return derived(); } function
164 * \sa imag() */
172 imag() { return derived(); } function
  /prebuilts/gdb/darwin-x86/include/python2.7/
complexobject.h 11 double imag; member in struct:__anon43128
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:__anon43250
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:__anon71366
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:__anon71489
51 PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
  /external/ceres-solver/internal/ceres/
polynomial_test.cc 66 // p(x) = poly(x) * (x - real - imag*i) * (x - real + imag*i).
67 Vector AddComplexRootPair(const Vector& poly, double real, double imag) {
70 // Multiply poly by x^2 - 2real + abs(real,imag)^2
73 poly2.tail(poly.size()) += (real*real + imag*imag) * poly;
123 Vector imag; local
124 bool success = FindPolynomialRoots(poly, &real, &imag);
132 Vector imag; local
133 bool success = FindPolynomialRoots(poly, &real, &imag);
172 Vector imag; local
    [all...]
  /external/eigen/test/
exceptions.cpp 73 ScalarWithExceptions imag(const ScalarWithExceptions & ) { return 0; } function
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_complex.h 70 value_type imag() const { return _M_im; } function in struct:complex
196 value_type imag() const { return _M_im; } function in struct:complex
335 value_type imag() const { return _M_im; } function in struct:complex
473 value_type imag() const { return _M_im; } function in struct:complex
731 inline _Tp _STLP_CALL imag(const complex<_Tp>& __z) function
770 { return _Tp(abs(complex<double>(double(__z.real()), double(__z.imag())))); }
774 { return _Tp(arg(complex<double>(double(__z.real()), double(__z.imag())))); }
779 return complex<_Tp>(_Tp(__tmp.real()), _Tp(__tmp.imag()));
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_complex.h 70 value_type imag() const { return _M_im; } function in struct:complex
196 value_type imag() const { return _M_im; } function in struct:complex
335 value_type imag() const { return _M_im; } function in struct:complex
473 value_type imag() const { return _M_im; } function in struct:complex
731 inline _Tp _STLP_CALL imag(const complex<_Tp>& __z) function
770 { return _Tp(abs(complex<double>(double(__z.real()), double(__z.imag())))); }
774 { return _Tp(arg(complex<double>(double(__z.real()), double(__z.imag())))); }
779 return complex<_Tp>(_Tp(__tmp.real()), _Tp(__tmp.imag()));
  /external/aac/libFDK/src/arm/
qmf_arm.cpp 478 FIXP_DBL A, B, real, imag, sta0; local
481 imag = *--imagSlot;
485 sta[0] = SMLAWT( sta[1], imag, B ); sta++; /* index=9...........319 */
487 sta[0] = SMLAWB( sta[1], imag, B ); sta++; /* index=8,18, ...318 */
491 sta[0] = SMLAWT( sta[1], imag, B ); sta++; /* index=7...........317 */
493 sta[0] = SMLAWB( sta[1], imag, B ); sta++; /* index=6...........316 */
497 sta[0] = SMULWT( imag, B ); sta++; /* index=5,15, ... 315 */
503 imag = *--imagSlot;
507 sta[0] = SMLAWB( sta[1], imag, B ); sta++; /* index=14..........324 */
512 sta[0] = SMLAWT( sta[1], imag, B ); sta++; /* index=13..........323 *
562 FIXP_DBL A, B, real, imag; local
    [all...]
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 51 * - internal::conj, internal::real, internal::imag, numext::abs2.
537 inline typename DerType::Scalar imag(const AutoDiffScalar<DerType>&) { return 0.; } function in namespace:Eigen
  /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
  /prebuilts/gdb/linux-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
  /prebuilts/python/darwin-x86/2.7.5/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
  /prebuilts/python/linux-x86/2.7.5/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
  /external/aac/libFDK/src/
qmf.cpp 179 FIXP_QMF *RESTRICT imagSlot, /*!< Input: Pointer to imag Slot */
199 FIXP_QMF imag = imagSlot[j]; // no_channels-1 .. 0 local
220 sta[0] = sta[1] + FX_DBL2FX_QSS(fMultDiv2( p_flt [4] , imag ));
222 sta[2] = sta[3] + FX_DBL2FX_QSS(fMultDiv2( p_flt [3] , imag ));
224 sta[4] = sta[5] + FX_DBL2FX_QSS(fMultDiv2( p_flt [2] , imag ));
226 sta[6] = sta[7] + FX_DBL2FX_QSS(fMultDiv2( p_flt [1] , imag ));
228 sta[8] = FX_DBL2FX_QSS(fMultDiv2( p_flt [0] , imag ));
247 FIXP_QMF *RESTRICT imagSlot, /*!< Input: Pointer to imag Slot */
268 FIXP_QMF imag = imagSlot[j]; // no_channels-1 .. 0 local
285 sta[0] = sta[1] + FX_DBL2FX_QSS(fMultDiv2( p_flt [4] , imag ));
    [all...]
  /external/eigen/Eigen/src/Core/
MathFunctions.h 92 * Implementation of imag *
111 using std::imag;
112 return imag(x);
236 return real(x)*real(x) + imag(x)*imag(x);
257 return abs(real(x)) + abs(imag(x));
527 random(imag(x), imag(y)));
575 inline EIGEN_MATHFUNC_RETVAL(imag, Scalar) imag(const Scalar& x function in namespace:Eigen::numext
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/aecm/
aecm_core.h 31 int16_t imag; member in struct:__anon27008
  /external/webrtc/webrtc/modules/audio_processing/ns/
nsx_core.h 104 int16_t imag[ANAL_BLOCKL_MAX]; member in struct:NoiseSuppressionFixedC_
nsx_core_mips.c 759 int16_t *imag = inst->imag; local
    [all...]
ns_core.c 881 // the length of both |real| and |imag| (time_data_length / 2 + 1).
1055 float real[ANAL_BLOCKL_MAX], imag[HALF_ANAL_BLOCKL]; local
1197 float real[ANAL_BLOCKL_MAX], imag[HALF_ANAL_BLOCKL]; local
    [all...]
nsx_core_neon.c 366 // inst->imag[i] = (int16_t)((inst->imag[i] *
371 int16_t* pimag = &inst->imag[0];
377 int16x8_t imag = vld1q_s16(pimag); local
381 int32x4_t tmp_i_0 = vmull_s16(vget_low_s16(imag), vget_low_s16(ns_filter));
384 int32x4_t tmp_i_1 = vmull_s16(vget_high_s16(imag),
407 // freq_buf[1] = -inst->imag[0];
410 // freq_buf[j + 1] = -inst->imag[i];
413 // freq_buf[inst->anaLen + 1] = -inst->imag[inst->anaLen2];
416 pimag = &inst->imag[0]
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 104 llvm::Value *imag = CGF.Builder.CreateLoad( local
106 return RValue::getComplex(real, imag);
    [all...]

Completed in 678 milliseconds

1 2