Searched defs:imag (Results 1 - 25 of 37) sorted by relevance

12

/external/python/cpython3/Include/
H A Dcomplexobject.h12 double imag; member in struct:__anon19790
47 PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
/external/eigen/Eigen/src/plugins/
H A DCommonCwiseUnaryOps.h30 /** \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/libxaac/decoder/
H A Dixheaacd_dsp_fft32x32s.c34 VOID ixheaacd_inv_dit_fft_8pt_dec(WORD32 *y, WORD32 *real, WORD32 *imag) { argument
85 imag[0] = ixheaacd_add32_sat(x[1], x[9]);
93 imag[4] = ixheaacd_sub32_sat(x[5], x[12]);
99 imag[1] = ixheaacd_add32_sat(x[3], vi);
105 imag[2] = ixheaacd_add32_sat(a1, a3);
113 imag[3] = ixheaacd_add32_sat(a10, a30);
116 imag[5] = ixheaacd_sub32_sat(x[7], vi);
H A Dixheaacd_hybrid.c103 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, tsi
[all...]
H A Dixheaacd_mps_pre_mix.c384 FLOAT32 imag = self->hyb_in[0][ts][qs].re * local
389 sum_imag += imag;
408 FLOAT32 imag = self->hyb_in[0][ts][qs].re * local
413 sum_imag += imag;
/external/python/cpython2/Include/
H A Dcomplexobject.h11 double imag; member in struct:__anon19228
51 PyAPI_FUNC(PyObject *) PyComplex_FromDoubles(double real, double imag);
/external/compiler-rt/lib/builtins/ppc/
H A Ddivtc3.c41 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
[all...]
H A Dmultc3.c29 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/aac/libFDK/include/
H A Dqmf_pcm.h135 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/
H A DMPIMock.h16 namespace std { template<class T> struct complex { T real; T imag; }; } member in struct:std::complex
/external/eigen/test/
H A Dexceptions.cpp73 ScalarWithExceptions imag(const ScalarWithExceptions & ) { return 0; } function
/external/python/cpython2/Lib/
H A Dnumbers.py37 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/
H A Dnumbers.py35 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
/external/eigen/unsupported/Eigen/src/AutoDiff/
H A DAutoDiffScalar.h58 * - internal::conj, internal::real, internal::imag, numext::abs2.
546 inline typename DerType::Scalar imag(const AutoDiffScalar<DerType>&) { return 0.; } function in namespace:Eigen
/external/webrtc/webrtc/modules/audio_processing/aecm/
H A Daecm_core.h31 int16_t imag; member in struct:__anon30833
/external/webrtc/webrtc/modules/audio_processing/ns/
H A Dnsx_core.h104 int16_t imag[ANAL_BLOCKL_MAX]; member in struct:NoiseSuppressionFixedC_
H A Dnsx_core_mips.c759 int16_t *imag = inst->imag; local
772 "lh %[tmp_3], 0(%[imag]) \n\t"
778 "sh %[tmp_3], 0(%[imag]) \n\t"
783 "addiu %[imag], %[imag], 2 \n\t"
789 "lh %[tmp_3], 0(%[imag]) \n\t"
792 "lh %[tmp_6], 2(%[imag]) \n\t"
805 "sh %[tmp_3], 0(%[imag]) \n\t"
810 "sh %[tmp_6], 2(%[imag]) \
[all...]
/external/aac/libSACdec/src/
H A Dsac_process.cpp448 FIXP_DBL var0, var1, real, imag; local
456 imag = fMultDiv2(var0, tmp0);
458 imag = fMultAddDiv2(imag, var1, tmp1);
459 *pHybOutImagDry++ = imag << (1 + M2_exp);
525 FIXP_DBL real, imag, wReal0, wImag0, wReal1, wImag1; local
532 cplxMultDiv2(&real, &imag, wReal0, wImag0, mReal0, mImag0);
535 *pHybOutImagDry++ = fMultAddDiv2(imag, wImag1, mReal1) << s;
570 FIXP_DBL real, imag, wReal0, wImag0, wReal1, wImag1; local
577 cplxMultDiv2(&real, &imag, wReal
[all...]
/external/eigen/Eigen/src/Core/
H A DMathFunctions.h120 * Implementation of imag *
141 using std::imag;
142 return imag(x);
156 return x.imag();
290 return real(x)*real(x) + imag(x)*imag(x);
323 return abs(real(x)) + abs(imag(x));
683 random(imag(x), imag(y)));
896 inline EIGEN_MATHFUNC_RETVAL(imag, Scala function in namespace:Eigen::numext
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorBase.h226 imag() const { function in class:Eigen::TensorBase
/external/python/cpython2/Objects/
H A Dcomplexobject.c38 r.imag = a.imag + b.imag;
47 r.imag = a.imag - b.imag;
56 r.imag = -a.imag;
64 r.real = a.real*b.real - a.imag*b.imag;
248 complex_subtype_from_doubles(PyTypeObject *type, double real, double imag) argument
257 PyComplex_FromDoubles(double real, double imag) argument
[all...]
/external/python/cpython3/Objects/
H A Dcomplexobject.c20 r.imag = a.imag + b.imag;
29 r.imag = a.imag - b.imag;
38 r.imag = -a.imag;
46 r.real = a.real*b.real - a.imag*b.imag;
230 complex_subtype_from_doubles(PyTypeObject *type, double real, double imag) argument
239 PyComplex_FromDoubles(double real, double imag) argument
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
H A Ddot_op_emitter.cc826 auto imag = [&](llvm::Value* x) { local
831 ir_builder_->CreateFMul(imag(lhs_element), imag(rhs_element)));
833 ir_builder_->CreateFMul(real(lhs_element), imag(rhs_element)),
834 ir_builder_->CreateFMul(imag(lhs_element), real(rhs_element)));
838 updated_accum, ir_builder_->CreateFAdd(imag(accum), product_imag), {1});
890 llvm::Value* imag = ir_builder_->CreateFAdd( local
897 result = ir_builder_->CreateInsertValue(result, imag, {1});
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
H A Dir_emitter.cc462 auto imag = [&](llvm::Value* x) { local
467 ir_builder_.CreateFMul(imag(lhs_value), imag(rhs_value)));
469 ir_builder_.CreateFMul(real(lhs_value), imag(rhs_value)),
470 ir_builder_.CreateFMul(imag(lhs_value), real(rhs_value)));
/external/tensorflow/tensorflow/python/ops/
H A Dmath_ops.py104 @@imag
576 def complex(real, imag, name=None):
580 tensor `imag` representing the imaginary part of a complex number, this
582 *a* represents the `real` part and *b* represents the `imag` part.
584 The input tensors `real` and `imag` must have the same shape.
590 imag = tf.constant([4.75, 5.75])
591 tf.complex(real, imag) # [[2.25 + 4.75j], [3.25 + 5.75j]]
597 imag: A `Tensor`. Must have the same type as `real`.
604 imag = ops.convert_to_tensor(imag, nam
649 def imag(input, name=None): function
[all...]

Completed in 705 milliseconds

12