/external/libvpx/libvpx/vpx_dsp/ |
txfm_common.h | 38 static const tran_high_t cospi_11_64 = 14053; variable
|
inv_txfm.c | 423 s10 = x10 * cospi_21_64 + x11 * cospi_11_64; 424 s11 = x10 * cospi_11_64 - x11 * cospi_21_64; 856 temp1 = input[21] * cospi_11_64 - input[11] * cospi_21_64; 857 temp2 = input[21] * cospi_21_64 + input[11] * cospi_11_64; [all...] |
fwd_txfm.c | 695 output[21] = dct_32_round(step[21] * cospi_11_64 + step[26] * cospi_21_64); 700 output[11] = dct_32_round(step[26] * cospi_11_64 + step[21] * -cospi_21_64);
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
itrans32_cols_dspr2.c | 197 "madd $ac2, %[load3], %[cospi_11_64] \n\t" 202 "madd $ac1, %[load4], %[cospi_11_64] \n\t" 230 [cospi_11_64] "r"(cospi_11_64), [cospi_21_64] "r"(cospi_21_64), [all...] |
itrans32_dspr2.c | 241 "madd $ac2, %[load3], %[cospi_11_64] \n\t" 246 "madd $ac1, %[load4], %[cospi_11_64] \n\t" 274 [cospi_11_64] "r"(cospi_11_64), [cospi_21_64] "r"(cospi_21_64), [all...] |
idct16x16_msa.c | 373 k2 = VP9_SET_COSPI_PAIR(cospi_21_64, cospi_11_64); 374 k3 = VP9_SET_COSPI_PAIR(cospi_11_64, -cospi_21_64);
|
inv_txfm_msa.h | 353 k2_m = VP9_SET_COSPI_PAIR(cospi_21_64, cospi_11_64); \ 354 k3_m = VP9_SET_COSPI_PAIR(cospi_11_64, -cospi_21_64); \
|
itrans16_dspr2.c | [all...] |
idct32x32_msa.c | 184 DOTP_CONST_PAIR(reg5, reg2, cospi_11_64, cospi_21_64, reg2, reg5); 488 DOTP_CONST_PAIR(reg5, reg2, cospi_11_64, cospi_21_64, reg2, reg5);
|
fwd_dct32x32_msa.c | 227 DOTP_CONST_PAIR(in18, in17, cospi_11_64, cospi_21_64, vec5, vec4); 573 DOTP_CONST_PAIR(in18, in17, cospi_11_64, cospi_21_64, vec5, vec4); [all...] |
/external/libvpx/libvpx/vpx_dsp/arm/ |
idct32x32_135_add_neon.c | 119 s1[26] = multiply_shift_and_narrow_s16(in[11], cospi_11_64); 403 s1[26] = multiply_shift_and_narrow_s16(in[11], cospi_11_64);
|
highbd_idct32x32_135_add_neon.c | 129 s1[26] = multiply_shift_and_narrow_s32_dual(in[11], cospi_11_64); 479 s1[26] = multiply_shift_and_narrow_s32_dual(in[11], cospi_11_64); [all...] |
highbd_idct32x32_1024_add_neon.c | 461 do_butterfly(q[14], q[13], cospi_11_64, cospi_21_64, &q[1], &q[3]);
|
idct32x32_add_neon.c | 591 do_butterfly(q[14], q[13], cospi_11_64, cospi_21_64, &q[1], &q[3]);
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
inv_txfm_ssse3.c | 830 const __m128i stk1_11 = pair_set_epi16(2 * cospi_11_64, 2 * cospi_11_64); [all...] |
fwd_dct32x32_impl_avx2.h | 84 const __m256i k__cospi_p11_p21 = pair256_set_epi16(+cospi_11_64, cospi_21_64); 89 const __m256i k__cospi_m21_p11 = pair256_set_epi16(-cospi_21_64, cospi_11_64); [all...] |
inv_txfm_sse2.c | [all...] |
fwd_dct32x32_impl_sse2.h | 94 const __m128i k__cospi_p11_p21 = pair_set_epi16(+cospi_11_64, cospi_21_64); 99 const __m128i k__cospi_m21_p11 = pair_set_epi16(-cospi_21_64, cospi_11_64); [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_dct.c | 378 s10 = x10 * cospi_21_64 + x11 * cospi_11_64; 379 s11 = x10 * cospi_11_64 - x11 * cospi_21_64;
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_dct_intrin_sse2.c | [all...] |