Home
last modified time | relevance | path

Searched refs:coeff2 (Results 1 – 10 of 10) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/mips/msa/
Dencodeopt_msa.c47 v8i16 coeff, coeff0, coeff1, coeff2, coeff3, coeff4; in vp8_mbblock_error_msa() local
67 coeff2 = LD_SH(coeff_ptr); in vp8_mbblock_error_msa()
83 ILVRL_H2_SH(coeff2, dq_coeff2, coeff0, coeff1); in vp8_mbblock_error_msa()
113 v8i16 coeff, coeff0, coeff1, coeff2, coeff3, coeff4; in vp8_mbuverror_msa() local
127 coeff2 = LD_SH(coeff_ptr); in vp8_mbuverror_msa()
144 ILVRL_H2_SH(coeff2, dq_coeff2, coeff0, coeff1); in vp8_mbuverror_msa()
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DMidpointStepInterpolator.java87 final double coeff2 = oneMinusThetaH * (1.0 + theta); in computeInterpolatedStateAndDerivatives() local
94 interpolatedState[i] = currentState[i] + coeff1 * yDot1 - coeff2 * yDot2; in computeInterpolatedStateAndDerivatives()
DThreeEighthesStepInterpolator.java94 final double coeff2 = 3 * s * (1 + theta - fourTheta2); in computeInterpolatedStateAndDerivatives() local
108 currentState[i] - coeff1 * yDot1 - coeff2 * yDot2 - coeff3 * yDot3 - coeff4 * yDot4; in computeInterpolatedStateAndDerivatives()
DGillStepInterpolator.java103 final double coeff2 = c23 * TWO_MINUS_SQRT_2; in computeInterpolatedStateAndDerivatives() local
118 currentState[i] - coeff1 * yDot1 - coeff2 * yDot2 - coeff3 * yDot3 - coeff4 * yDot4; in computeInterpolatedStateAndDerivatives()
/external/libvpx/libvpx/vpx_dsp/x86/
Davg_intrin_avx2.c152 const __m256i coeff2 = _mm256_loadu_si256((const __m256i *)(t_coeff + 128)); in vpx_hadamard_16x16_avx2() local
157 __m256i b2 = _mm256_add_epi16(coeff2, coeff3); in vpx_hadamard_16x16_avx2()
158 __m256i b3 = _mm256_sub_epi16(coeff2, coeff3); in vpx_hadamard_16x16_avx2()
Davg_intrin_sse2.c261 __m128i coeff2 = load_tran_low(coeff + 128); in vpx_hadamard_16x16_sse2() local
266 __m128i b2 = _mm_add_epi16(coeff2, coeff3); in vpx_hadamard_16x16_sse2()
267 __m128i b3 = _mm_sub_epi16(coeff2, coeff3); in vpx_hadamard_16x16_sse2()
279 coeff2 = _mm_sub_epi16(b0, b2); in vpx_hadamard_16x16_sse2()
281 store_tran_low(coeff2, coeff + 128); in vpx_hadamard_16x16_sse2()
/external/libvpx/libvpx/vpx_dsp/mips/
Dfwd_txfm_msa.c40 v8i16 coeff2 = { in fdct8x16_1d_column() local
94 cnst0 = __msa_splati_h(coeff2, 0); in fdct8x16_1d_column()
106 cnst1 = __msa_splati_h(coeff2, 2); in fdct8x16_1d_column()
129 cnst0 = __msa_splati_h(coeff2, 1); in fdct8x16_1d_column()
142 cnst1 = __msa_splati_h(coeff2, 3); in fdct8x16_1d_column()
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/
DLevenbergMarquardtEstimator.java400 double coeff2 = lmPar * lmNorm * lmNorm / pc2; in estimate() local
401 double preRed = coeff1 + 2 * coeff2; in estimate()
402 double dirDer = -(coeff1 + coeff2); in estimate()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
DLevenbergMarquardtOptimizer.java401 double coeff2 = lmPar * lmNorm * lmNorm / pc2; in doOptimize() local
402 double preRed = coeff1 + 2 * coeff2; in doOptimize()
403 double dirDer = -(coeff1 + coeff2); in doOptimize()
/external/libvpx/libvpx/vp8/common/mips/msa/
Dvp8_macros_msa.h1706 #define DPADD_SH3_SH(in0, in1, in2, coeff0, coeff1, coeff2) \ argument
1713 tmp1_m = __msa_dotp_s_h((v16i8)in2, (v16i8)coeff2); \