Home
last modified time | relevance | path

Searched refs:coeff3 (Results 1 – 5 of 5) 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
73 coeff3 = LD_SH(coeff_ptr); in vp8_mbblock_error_msa()
91 ILVRL_H2_SH(coeff3, dq_coeff3, coeff0, coeff1); in vp8_mbblock_error_msa()
113 v8i16 coeff, coeff0, coeff1, coeff2, coeff3, coeff4; in vp8_mbuverror_msa() local
133 coeff3 = LD_SH(coeff_ptr); in vp8_mbuverror_msa()
153 ILVRL_H2_SH(coeff3, dq_coeff3, coeff0, coeff1); in vp8_mbuverror_msa()
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DThreeEighthesStepInterpolator.java95 final double coeff3 = 3 * s * (1 + theta); in computeInterpolatedStateAndDerivatives() local
108 currentState[i] - coeff1 * yDot1 - coeff2 * yDot2 - coeff3 * yDot3 - coeff4 * yDot4; in computeInterpolatedStateAndDerivatives()
DGillStepInterpolator.java104 final double coeff3 = c23 * TWO_PLUS_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.c153 const __m256i coeff3 = _mm256_loadu_si256((const __m256i *)(t_coeff + 192)); 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.c262 __m128i coeff3 = load_tran_low(coeff + 192); 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()
280 coeff3 = _mm_sub_epi16(b1, b3); in vpx_hadamard_16x16_sse2()
282 store_tran_low(coeff3, coeff + 192); in vpx_hadamard_16x16_sse2()