/external/libvpx/libvpx/vpx_dsp/ |
txfm_common.h | 34 static const tran_high_t cospi_7_64 = 15426; variable
|
inv_txfm.c | 425 s12 = x12 * cospi_25_64 + x13 * cospi_7_64; 426 s13 = x12 * cospi_7_64 - x13 * cospi_25_64; 846 temp1 = input[25] * cospi_7_64 - input[7] * cospi_25_64; 847 temp2 = input[25] * cospi_25_64 + input[7] * cospi_7_64; [all...] |
fwd_txfm.c | 693 output[25] = dct_32_round(step[19] * cospi_7_64 + step[28] * cospi_25_64); 702 output[7] = dct_32_round(step[28] * cospi_7_64 + step[19] * -cospi_25_64);
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
itrans32_cols_dspr2.c | 137 "madd $ac2, %[load3], %[cospi_7_64] \n\t" 142 "madd $ac1, %[load4], %[cospi_7_64] \n\t" 170 [cospi_4_64] "r"(cospi_4_64), [cospi_7_64] "r"(cospi_7_64), [all...] |
itrans32_dspr2.c | 181 "madd $ac2, %[load3], %[cospi_7_64] \n\t" 186 "madd $ac1, %[load4], %[cospi_7_64] \n\t" 214 [cospi_4_64] "r"(cospi_4_64), [cospi_7_64] "r"(cospi_7_64), [all...] |
idct16x16_msa.c | 353 k2 = VP9_SET_COSPI_PAIR(cospi_25_64, cospi_7_64); 354 k3 = VP9_SET_COSPI_PAIR(cospi_7_64, -cospi_25_64);
|
inv_txfm_msa.h | 358 k2_m = VP9_SET_COSPI_PAIR(cospi_25_64, cospi_7_64); \ 359 k3_m = VP9_SET_COSPI_PAIR(cospi_7_64, -cospi_25_64); \
|
itrans16_dspr2.c | [all...] |
idct32x32_msa.c | 143 DOTP_CONST_PAIR(reg6, reg1, cospi_7_64, cospi_25_64, reg1, reg6); 449 DOTP_CONST_PAIR(reg6, reg1, cospi_7_64, cospi_25_64, reg1, reg6);
|
fwd_dct32x32_msa.c | 207 DOTP_CONST_PAIR(in21, in22, cospi_7_64, cospi_25_64, vec4, vec5); 544 DOTP_CONST_PAIR(in21, in22, cospi_7_64, cospi_25_64, vec4, vec5); [all...] |
/external/libvpx/libvpx/vpx_dsp/x86/ |
inv_txfm_ssse3.c | 526 const __m128i stk1_7 = pair_set_epi16(2 * cospi_7_64, 2 * cospi_7_64); 826 const __m128i stk1_7 = pair_set_epi16(2 * cospi_7_64, 2 * cospi_7_64); [all...] |
inv_txfm_sse2.c | [all...] |
fwd_dct32x32_impl_avx2.h | 78 const __m256i k__cospi_p07_p25 = pair256_set_epi16(+cospi_7_64, cospi_25_64); 79 const __m256i k__cospi_m25_p07 = pair256_set_epi16(-cospi_25_64, cospi_7_64); [all...] |
fwd_dct32x32_impl_sse2.h | 88 const __m128i k__cospi_p07_p25 = pair_set_epi16(+cospi_7_64, cospi_25_64); 89 const __m128i k__cospi_m25_p07 = pair_set_epi16(-cospi_25_64, cospi_7_64); [all...] |
/external/libvpx/libvpx/vpx_dsp/arm/ |
idct32x32_135_add_neon.c | 113 s1[28] = multiply_shift_and_narrow_s16(in[7], cospi_7_64); 397 s1[28] = multiply_shift_and_narrow_s16(in[7], cospi_7_64);
|
highbd_idct32x32_135_add_neon.c | 123 s1[28] = multiply_shift_and_narrow_s32_dual(in[7], cospi_7_64); 473 s1[28] = multiply_shift_and_narrow_s32_dual(in[7], cospi_7_64); [all...] |
highbd_idct32x32_34_add_neon.c | 386 s1[28] = multiply_shift_and_narrow_s32_dual(in[7], cospi_7_64);
|
idct32x32_34_add_neon.c | 282 s1[28] = multiply_shift_and_narrow_s16(in[7], cospi_7_64);
|
highbd_idct32x32_1024_add_neon.c | 426 do_butterfly(q[14], q[13], cospi_7_64, cospi_25_64, &q[1], &q[3]);
|
idct32x32_add_neon.c | 556 do_butterfly(q[14], q[13], cospi_7_64, cospi_25_64, &q[1], &q[3]);
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_dct.c | 380 s12 = x12 * cospi_25_64 + x13 * cospi_7_64; 381 s13 = x12 * cospi_7_64 - x13 * cospi_25_64;
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_dct_intrin_sse2.c | [all...] |