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

1 2

  /frameworks/av/media/libstagefright/codecs/aacdec/
ps_hybrid_synthesis.cpp 160 Int32 imag; local
172 imag = *(ptr_mHybrid_Im++);
173 imag += *(ptr_mHybrid_Im++);
179 imag += *(ptr_mHybrid_Im++);
180 imag += *(ptr_mHybrid_Im++);
184 *(ptr_mQmfImag++) = imag;
ps_channel_filtering.cpp 194 Int32 imag; local
201 imag = fxp_mul32_Q29(Q29_fmt(-0.06989827306334f), pQmfImag[ 4]);
203 imag = fxp_mac32_Q31(imag, Qfmt31(0.01055120626280f), pQmfImag[12]);
205 mHybridReal[2] = (imag - real);
206 mHybridImag[2] = -(imag + real);
211 imag = fxp_mul32_Q29(Q29_fmt(-0.07266113929591f), pQmfImag[ 3]);
213 imag = fxp_mac32_Q31(imag, Qfmt31(0.04540841899650f), pQmfImag[11]);
216 mHybridReal[3] = fxp_mac32_Q29(Q29_fmt(0.92387953251129f), imag, tmp1)
    [all...]
  /external/compiler-rt/lib/ppc/
divtc3.c 46 DD imag = { .ld = __gcc_qdiv(imagNumerator, denom) }; local
50 imag.s.hi = crt_scalbn(imag.s.hi, -ilogbw);
51 imag.s.lo = crt_scalbn(imag.s.lo, -ilogbw);
53 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi))
64 imag.s.hi = crt_copysign(CRT_INFINITY,cDD.s.hi) * bDD.s.hi;
65 imag.s.lo = 0.0;
75 imag.s.hi = CRT_INFINITY * (bDD.s.hi*cDD.s.hi - aDD.s.hi*dDD.s.hi);
76 imag.s.lo = 0.0
    [all...]
multc3.c 33 DD imag = { .ld = __gcc_qadd(ad,bc) }; local
35 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi))
84 imag.s.hi = CRT_INFINITY * (aDD.s.hi*dDD.s.hi + bDD.s.hi*cDD.s.hi);
85 imag.s.lo = 0.0;
91 __imag__ z = imag.ld;
  /frameworks/compile/libbcc/runtime/lib/ppc/
divtc3.c 46 DD imag = { .ld = __gcc_qdiv(imagNumerator, denom) }; local
50 imag.s.hi = scalbn(imag.s.hi, -ilogbw);
51 imag.s.lo = scalbn(imag.s.lo, -ilogbw);
53 if (isnan(real.s.hi) && isnan(imag.s.hi))
63 imag.s.hi = __builtin_copysign(INFINITY,cDD.s.hi) * bDD.s.hi;
64 imag.s.lo = 0.0;
73 imag.s.hi = INFINITY * (bDD.s.hi*cDD.s.hi - aDD.s.hi*dDD.s.hi);
74 imag.s.lo = 0.0
    [all...]
multc3.c 37 DD imag = { .ld = __gcc_qadd(ad,bc) }; local
39 if (isnan(real.s.hi) && isnan(imag.s.hi))
87 imag.s.hi = INFINITY * (aDD.s.hi*dDD.s.hi + bDD.s.hi*cDD.s.hi);
88 imag.s.lo = 0.0;
94 __imag__ z = imag.ld;
  /external/srec/srec/include/
sp_fft.h 221 fftdata *imag; member in struct:__anon12670
  /external/aac/libFDK/src/arm/
qmf_arm.cpp 478 FIXP_DBL A, B, real, imag, sta0; local
481 imag = *--imagSlot;
485 *sta++ = SMLAWT( sta[1], imag, B ); /* index=9...........319 */
487 *sta++ = SMLAWB( sta[1], imag, B ); /* index=8,18, ...318 */
491 *sta++ = SMLAWT( sta[1], imag, B ); /* index=7...........317 */
493 *sta++ = SMLAWB( sta[1], imag, B ); /* index=6...........316 */
497 *sta++ = SMULWT( imag, B ); /* index=5,15, ... 315 */
503 imag = *--imagSlot;
507 *sta++ = SMLAWB( sta[1], imag, B ); /* index=14..........324 */
512 *sta++ = SMLAWT( sta[1], imag, B ); /* index=13..........323 *
562 FIXP_DBL A, B, real, imag; local
    [all...]
  /external/stlport/src/
complex_io.cpp 31 { return __os << '(' << (double)__z.real() << ',' << (double)__z.imag() << ')'; }
36 { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; }
42 { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; }
  /ndk/sources/cxx-stl/stlport/src/
complex_io.cpp 31 { return __os << '(' << (double)__z.real() << ',' << (double)__z.imag() << ')'; }
36 { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; }
42 { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; }
  /external/webrtc/src/modules/audio_processing/aecm/
aecm_core.c 395 freq_signal[i].imag = - fft[j+1];
416 fft[j + 1] = -efw[i].imag;
419 fft[PART_LEN4 - (j - 1)] = efw[i].imag;
422 fft[1] = -efw[0].imag;
425 fft[PART_LEN2 + 1] = -efw[PART_LEN].imag;
    [all...]
aecm_core.h 104 WebRtc_Word16 imag; member in struct:__anon15283
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
__init__.py 62 ... return complex(dct['real'], dct['imag'])
65 >>> simplejson.loads('{"__complex__": true, "real": 1, "imag": 2}',
75 ... return [obj.real, obj.imag]
  /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/webrtc/src/modules/audio_processing/ns/
nsx_core.h 97 WebRtc_Word16 imag[ANAL_BLOCKL_MAX]; member in struct:NsxInst_t_
nsx_core_neon.c 331 // inst->imag[i] = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(inst->imag[i],
336 int16_t* ptr_imag = &inst->imag[0];
383 // freq_buf[1] = -inst->imag[0];
387 // freq_buf[j + 1] = -inst->imag[i];
389 // freq_buf[tmp16 + 1] = inst->imag[i];
392 // freq_buf[inst->anaLen + 1] = -inst->imag[inst->anaLen2];
395 freq_buf[1] = -inst->imag[0];
401 ptr_imag = &inst->imag[1];
454 freq_buf[inst->anaLen + 1] = -inst->imag[inst->anaLen2]
    [all...]
  /external/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()));
_complex.c 97 __tmp << '(' << __z.real() << ',' << __z.imag() << ')';
  /external/webkit/Source/WebCore/platform/audio/
FFTFrame.cpp 171 imagP[i] = static_cast<float>(c.imag());
246 imagP[i] = static_cast<float>(c2.imag());
  /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()));
_complex.c 97 __tmp << '(' << __z.real() << ',' << __z.imag() << ')';
  /prebuilts/ndk/android-ndk-r5/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()));
_complex.c 97 __tmp << '(' << __z.real() << ',' << __z.imag() << ')';
  /prebuilts/ndk/android-ndk-r6/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/android-ndk-r7/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()));

Completed in 436 milliseconds

1 2