/external/libvpx/libvpx/vpx_dsp/ |
txfm_common.h | 56 static const tran_high_t cospi_29_64 = 2404; variable
|
inv_txfm.c | 427 s14 = x14 * cospi_29_64 + x15 * cospi_3_64; 428 s15 = x14 * cospi_3_64 - x15 * cospi_29_64; 866 temp1 = input[29] * cospi_3_64 - input[3] * cospi_29_64; 867 temp2 = input[29] * cospi_29_64 + input[3] * cospi_3_64; [all...] |
fwd_txfm.c | 697 output[29] = dct_32_round(step[23] * cospi_3_64 + step[24] * cospi_29_64); 698 output[3] = dct_32_round(step[24] * cospi_3_64 + step[23] * -cospi_29_64);
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
itrans32_cols_dspr2.c | 257 "msub $ac2, %[load4], %[cospi_29_64] \n\t" 259 "madd $ac1, %[load3], %[cospi_29_64] \n\t" 286 [cospi_3_64] "r"(cospi_3_64), [cospi_29_64] "r"(cospi_29_64), [all...] |
itrans32_dspr2.c | 301 "msub $ac2, %[load4], %[cospi_29_64] \n\t" 303 "madd $ac1, %[load3], %[cospi_29_64] \n\t" 330 [cospi_3_64] "r"(cospi_3_64), [cospi_29_64] "r"(cospi_29_64), [all...] |
idct16x16_msa.c | 378 k2 = VP9_SET_COSPI_PAIR(cospi_29_64, cospi_3_64); 379 k3 = VP9_SET_COSPI_PAIR(cospi_3_64, -cospi_29_64);
|
inv_txfm_msa.h | 364 k2_m = VP9_SET_COSPI_PAIR(cospi_29_64, cospi_3_64); \ 365 k3_m = VP9_SET_COSPI_PAIR(cospi_3_64, -cospi_29_64); \
|
itrans16_dspr2.c | [all...] |
idct32x32_msa.c | 186 DOTP_CONST_PAIR(reg7, reg0, cospi_3_64, cospi_29_64, reg0, reg7); 490 DOTP_CONST_PAIR(reg7, reg0, cospi_3_64, cospi_29_64, reg0, reg7);
|
fwd_dct32x32_msa.c | 240 DOTP_CONST_PAIR(in18, in17, cospi_3_64, cospi_29_64, vec5, vec4); 589 DOTP_CONST_PAIR(in18, in17, cospi_3_64, cospi_29_64, vec5, vec4); [all...] |
/external/libvpx/libvpx/vpx_dsp/x86/ |
inv_txfm_ssse3.c | 529 const __m128i stk1_14 = pair_set_epi16(-2 * cospi_29_64, -2 * cospi_29_64); 834 const __m128i stk1_14 = pair_set_epi16(-2 * cospi_29_64, -2 * cospi_29_64); [all...] |
inv_txfm_sse2.c | [all...] |
fwd_dct32x32_impl_avx2.h | 86 const __m256i k__cospi_p03_p29 = pair256_set_epi16(+cospi_3_64, cospi_29_64); 87 const __m256i k__cospi_m29_p03 = pair256_set_epi16(-cospi_29_64, cospi_3_64); [all...] |
fwd_dct32x32_impl_sse2.h | 96 const __m128i k__cospi_p03_p29 = pair_set_epi16(+cospi_3_64, cospi_29_64); 97 const __m128i k__cospi_m29_p03 = pair_set_epi16(-cospi_29_64, cospi_3_64); [all...] |
/external/libvpx/libvpx/vpx_dsp/arm/ |
highbd_idct32x32_34_add_neon.c | 76 s1[23] = multiply_shift_and_narrow_s32_dual(in[3], -cospi_29_64); 391 s1[23] = multiply_shift_and_narrow_s32_dual(in[3], -cospi_29_64);
|
idct32x32_135_add_neon.c | 121 s1[23] = multiply_shift_and_narrow_s16(in[3], -cospi_29_64); 408 s1[23] = multiply_shift_and_narrow_s16(in[3], -cospi_29_64);
|
idct32x32_34_add_neon.c | 69 s1[23] = multiply_shift_and_narrow_s16(in[3], -cospi_29_64); 287 s1[23] = multiply_shift_and_narrow_s16(in[3], -cospi_29_64);
|
highbd_idct32x32_135_add_neon.c | 131 s1[23] = multiply_shift_and_narrow_s32_dual(in[3], -cospi_29_64); 484 s1[23] = multiply_shift_and_narrow_s32_dual(in[3], -cospi_29_64); [all...] |
highbd_idct32x32_1024_add_neon.c | 475 do_butterfly(q[14], q[13], cospi_3_64, cospi_29_64, &q[4], &q[6]);
|
idct32x32_add_neon.c | 605 do_butterfly(q[14], q[13], cospi_3_64, cospi_29_64, &q[4], &q[6]);
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_dct.c | 382 s14 = x14 * cospi_29_64 + x15 * cospi_3_64; 383 s15 = x14 * cospi_3_64 - x15 * cospi_29_64;
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_dct_intrin_sse2.c | [all...] |