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

1 2 3 4 5 6

  /bionic/libm/x86_64/
e_log.S 102 movapd coeff(%rip), %xmm3
107 movapd 16+coeff(%rip), %xmm4
109 movapd 32+coeff(%rip), %xmm2
743 coeff: label
756 .type coeff,@object
757 .size coeff,48
s_log1p.S 118 movapd coeff(%rip), %xmm3
123 movapd 16+coeff(%rip), %xmm2
138 addpd 32+coeff(%rip), %xmm2
777 coeff: label
790 .type coeff,@object
791 .size coeff,48
e_log10.S 107 movapd coeff(%rip), %xmm3
112 movapd 16+coeff(%rip), %xmm4
114 movapd 32+coeff(%rip), %xmm2
771 coeff: label
784 .type coeff,@object
785 .size coeff,48
e_pow.S 152 movapd coeff(%rip), %xmm1
155 movapd 16+coeff(%rip), %xmm4
163 movapd 32+coeff(%rip), %xmm6
168 movapd 48+coeff(%rip), %xmm0
901 movapd coeff(%rip), %xmm0
907 movapd 64+coeff(%rip), %xmm2
916 movapd 80+coeff(%rip), %xmm5
920 movapd 32+coeff(%rip), %xmm1
1092 coeff: label
    [all...]
  /external/libvpx/libvpx/vp9/encoder/mips/msa/
vp9_error_msa.c 19 v8i16 coeff, dq_coeff, coeff_r_h, coeff_l_h; \
24 coeff = LD_SH(coeff_ptr); \
26 UNPCK_SH_SW(coeff, coeff_r_w, coeff_l_w); \
27 ILVRL_H2_SH(coeff, dq_coeff, coeff_r_h, coeff_l_h); \
33 coeff = LD_SH(coeff_ptr + 8); \
35 UNPCK_SH_SW(coeff, coeff_r_w, coeff_l_w); \
36 ILVRL_H2_SH(coeff, dq_coeff, coeff_r_h, coeff_l_h); \
45 coeff = LD_SH(coeff_ptr); \
47 UNPCK_SH_SW(coeff, coeff_r_w, coeff_l_w); \
48 ILVRL_H2_SH(coeff, dq_coeff, coeff_r_h, coeff_l_h);
91 const int16_t *coeff = (const int16_t *)coeff_ptr; local
    [all...]
  /external/python/cpython3/Modules/_decimal/tests/
bignum.py 20 def xhash(coeff, exp):
22 if coeff < 0:
24 coeff = -coeff
29 hash_ = coeff * exp_hash % _PyHASH_MODULUS
35 coeff = int(x) variable
39 h1 = xhash(coeff, -849999999)
  /external/aac/libFDK/src/
FDK_lpc.cpp 118 const int inc, const FIXP_SGL *coeff,
147 const FIXP_SGL *pCoeff = coeff + order - 1;
170 const int inc, const FIXP_DBL *coeff,
186 const FIXP_DBL *pCoeff = coeff + order - 1;
222 FIXP_LPC_TNS coeff[2 * LPC_MAX_ORDER]; local
223 FDKmemcpy(&coeff[0], lpcCoeff_m, order * sizeof(FIXP_LPC_TNS));
224 FDKmemcpy(&coeff[order], lpcCoeff_m, order * sizeof(FIXP_LPC_TNS));
238 const FIXP_LPC_TNS *pCoeff = coeff + order - stateIndex;
265 FIXP_LPC coeff[2 * LPC_MAX_ORDER];
266 FDKmemcpy(&coeff[0], lpcCoeff_m, order * sizeof(FIXP_LPC))
    [all...]
  /external/libvpx/libvpx/test/
idct8x8_test.cc 62 tran_low_t coeff[64]; local
75 coeff[j] = static_cast<tran_low_t>(round(output_r[j]));
77 vpx_idct8x8_64_add_c(coeff, dst, 8);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
isf_extrapolation.cpp 122 int16 coeff, mean, tmp, tmp2, tmp3; local
231 coeff = div_16by16(tmp, tmp2); /* Coefficient for stretching the ISF vector */
236 tmp = mult_int16(sub_int16(HfIsf[i], HfIsf[i - 1]), coeff);
  /external/eigen/Eigen/src/Core/
ForceAlignedAccess.h 49 EIGEN_DEVICE_FUNC inline const CoeffReturnType coeff(Index row, Index col) const function in class:Eigen::ForceAlignedAccess
51 return m_expression.coeff(row, col);
59 EIGEN_DEVICE_FUNC inline const CoeffReturnType coeff(Index index) const function in class:Eigen::ForceAlignedAccess
61 return m_expression.coeff(index);
NestByValue.h 49 EIGEN_DEVICE_FUNC inline const CoeffReturnType coeff(Index row, Index col) const function in class:Eigen::NestByValue
51 return m_expression.coeff(row, col);
59 EIGEN_DEVICE_FUNC inline const CoeffReturnType coeff(Index index) const function in class:Eigen::NestByValue
61 return m_expression.coeff(index);
ReturnByValue.h 31 /* The ReturnByValue object doesn't even have a coeff() method.
72 const Unusable& coeff(Index) const { return *reinterpret_cast<const Unusable*>(this); } function in class:Eigen::ReturnByValue
73 const Unusable& coeff(Index,Index) const { return *reinterpret_cast<const Unusable*>(this); } function in class:Eigen::ReturnByValue
Select.h 74 const Scalar coeff(Index i, Index j) const function in class:Eigen::Select
76 if (m_condition.coeff(i,j))
77 return m_then.coeff(i,j);
79 return m_else.coeff(i,j);
83 const Scalar coeff(Index i) const function in class:Eigen::Select
85 if (m_condition.coeff(i))
86 return m_then.coeff(i);
88 return m_else.coeff(i);
Diagonal.h 124 inline CoeffReturnType coeff(Index row, Index) const function in class:Eigen::Diagonal
126 return m_matrix.coeff(row+rowOffset(), row+colOffset());
143 inline CoeffReturnType coeff(Index idx) const function in class:Eigen::Diagonal
145 return m_matrix.coeff(idx+rowOffset(), idx+colOffset());
MapBase.h 24 * This base class provides the const low-level accessors (e.g. coeff, coeffRef) of dense
73 using Base::coeff;
101 /** \copydoc PlainObjectBase::coeff(Index,Index) const */
103 inline const Scalar& coeff(Index rowId, Index colId) const function in class:Eigen::MapBase
108 /** \copydoc PlainObjectBase::coeff(Index) const */
110 inline const Scalar& coeff(Index index) const function in class:Eigen::MapBase
209 * This base class provides the non-const low-level accessors (e.g. coeff and coeffRef) of
232 using Base::coeff;
Transpositions.h 56 inline const StorageIndex& coeff(Index i) const { return indices().coeff(i); } function in class:Eigen::TranspositionsBase
  /external/eigen/test/
sparseLM.cpp 41 Scalar coeff; local
46 coeff = (x(j)-i)/v(i);
47 coeff *= coeff;
48 if (coeff < 1. && coeff > 0.)
49 y(j) += u(i)*std::pow((1-coeff), 2);
69 Scalar coeff; local
74 coeff = (m_x(j)-i)/v(i);
75 coeff *= coeff
93 Scalar coeff; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/mips/msa/
encodeopt_msa.c 18 v8i16 coeff, dq_coeff, coeff0, coeff1; local
24 coeff = LD_SH(coeff_ptr);
26 ILVRL_H2_SH(coeff, dq_coeff, coeff0, coeff1);
47 v8i16 coeff, coeff0, coeff1, coeff2, coeff3, coeff4; local
61 coeff_ptr = be->coeff;
63 coeff = LD_SH(coeff_ptr);
71 coeff_ptr = be->coeff;
79 ILVRL_H2_SH(coeff, dq_coeff, coeff0, coeff1);
113 v8i16 coeff, coeff0, coeff1, coeff2, coeff3, coeff4; local
121 coeff_ptr = be->coeff;
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
quantize_neon.c 44 const int16x8_t coeff = load_tran_low_to_s16q(coeff_ptr); local
45 const int16x8_t coeff_sign = vshrq_n_s16(coeff, 15);
46 const int16x8_t coeff_abs = vabsq_s16(coeff);
96 const int16x8_t coeff = load_tran_low_to_s16q(coeff_ptr); local
97 const int16x8_t coeff_sign = vshrq_n_s16(coeff, 15);
98 const int16x8_t coeff_abs = vabsq_s16(coeff);
180 const int16x8_t coeff = load_tran_low_to_s16q(coeff_ptr); local
181 const int16x8_t coeff_sign = vshrq_n_s16(coeff, 15);
182 const int16x8_t coeff_abs = vabsq_s16(coeff);
240 const int16x8_t coeff = load_tran_low_to_s16q(coeff_ptr) local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
quantize.c 22 const int coeff = coeff_ptr[rc]; local
23 const int coeff_sign = (coeff >> 31);
24 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
52 const int coeff = coeff_ptr[0]; local
53 const int coeff_sign = (coeff >> 31);
54 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
71 const int coeff = coeff_ptr[rc]; local
72 const int coeff_sign = (coeff >> 31);
73 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
104 const int coeff = coeff_ptr[0] local
137 const int coeff = coeff_ptr[rc]; local
149 const int coeff = coeff_ptr[rc]; local
188 const int coeff = coeff_ptr[rc]; local
200 const int coeff = coeff_ptr[rc]; local
241 const int coeff = coeff_ptr[rc]; local
252 const int coeff = coeff_ptr[rc]; local
294 const int coeff = coeff_ptr[rc]; local
305 const int coeff = coeff_ptr[rc]; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
highbd_quantize_intrin_sse2.c 142 const int coeff = coeff_ptr[rc]; local
143 const int coeff_sign = (coeff >> 31);
144 const int abs_coeff = (coeff ^ coeff_sign) - coeff_sign;
  /external/libxaac/decoder/
ixheaacd_mps_hybrid_filt.c 58 WORD32 coeff; local
77 coeff = filt_coeff[QMF_HYBRID_FILT_ORDER - 1 - n];
87 temp = ixheaacd_mps_mult32_local(coeff, temp, 30);
98 temp = ixheaacd_mps_mult32_local(coeff, temp, 30);
118 WORD32 coeff; local
136 coeff = filt_coeff[QMF_HYBRID_FILT_ORDER - 1 - n];
145 temp = ixheaacd_mps_mult32_local(coeff, temp, 30);
155 temp = ixheaacd_mps_mult32_local(coeff, temp, 30);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
qgain475.cpp 799 sf0_exp_coeff = energy coeff. (exponent part) (Word16)
800 sf0_frac_coeff = energy coeff. ((fraction part) (Word16)
806 sf1_exp_coeff = energy coeff. (exponent part) (Word16)
807 sf1_frac_coeff = energy coeff. (fraction part) (Word16)
1193 Word16 coeff[10]; local
    [all...]
qua_gain.cpp 125 Word16 frac_coeff -- Word16 Array -- energy coeff. (5), fraction part, Q15
126 Word16 exp_coeff -- Word16 Array -- energy coeff. (5), exponent part, Q0
197 Word16 frac_coeff[], /* i : energy coeff. (5), fraction part, Q15 */
198 Word16 exp_coeff[], /* i : energy coeff. (5), exponent part, Q0 */
224 Word16 coeff[5]; local
317 L_Extract(L_tmp, &coeff[i], &coeff_lo[i], pOverflow);
351 L_tmp = Mpy_32_16(coeff[0], coeff_lo[0], g2_pitch, pOverflow);
352 L_tmp2 = Mpy_32_16(coeff[1], coeff_lo[1], g_pitch, pOverflow);
355 L_tmp2 = Mpy_32_16(coeff[2], coeff_lo[2], g2_code, pOverflow);
358 L_tmp2 = Mpy_32_16(coeff[3], coeff_lo[3], g_code, pOverflow)
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
sections.s 11 .global coeff
12 coeff .word 011h,022h,033h label

Completed in 334 milliseconds

1 2 3 4 5 6