/external/libvpx/libvpx/vpx_dsp/ |
txfm_common.h | 54 static const tran_high_t cospi_27_64 = 3981; variable
|
inv_txfm.c | 415 s2 = x2 * cospi_5_64 + x3 * cospi_27_64; 416 s3 = x2 * cospi_27_64 - x3 * cospi_5_64; 851 temp1 = input[5] * cospi_27_64 - input[27] * cospi_5_64; 852 temp2 = input[5] * cospi_5_64 + input[27] * cospi_27_64; [all...] |
fwd_txfm.c | 694 output[5] = dct_32_round(step[20] * cospi_27_64 + step[27] * cospi_5_64); 701 output[27] = dct_32_round(step[27] * cospi_27_64 + step[20] * -cospi_5_64);
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
itrans32_cols_dspr2.c | 184 "madd $ac1, %[load1], %[cospi_27_64] \n\t" 189 "madd $ac3, %[load2], %[cospi_27_64] \n\t" 229 [cospi_27_64] "r"(cospi_27_64), [cospi_5_64] "r"(cospi_5_64), [all...] |
itrans32_dspr2.c | 228 "madd $ac1, %[load1], %[cospi_27_64] \n\t" 233 "madd $ac3, %[load2], %[cospi_27_64] \n\t" 273 [cospi_27_64] "r"(cospi_27_64), [cospi_5_64] "r"(cospi_5_64), [all...] |
idct16x16_msa.c | 371 k0 = VP9_SET_COSPI_PAIR(cospi_5_64, cospi_27_64); 372 k1 = VP9_SET_COSPI_PAIR(cospi_27_64, -cospi_5_64);
|
inv_txfm_msa.h | 351 k0_m = VP9_SET_COSPI_PAIR(cospi_5_64, cospi_27_64); \ 352 k1_m = VP9_SET_COSPI_PAIR(cospi_27_64, -cospi_5_64); \
|
itrans16_dspr2.c | [all...] |
idct32x32_msa.c | 183 DOTP_CONST_PAIR(reg1, reg6, cospi_27_64, cospi_5_64, reg1, reg6); 487 DOTP_CONST_PAIR(reg1, reg6, cospi_27_64, cospi_5_64, reg1, reg6);
|
fwd_dct32x32_msa.c | 221 DOTP_CONST_PAIR(in19, in16, cospi_27_64, cospi_5_64, vec5, vec4); 567 DOTP_CONST_PAIR(in19, in16, cospi_27_64, cospi_5_64, vec5, vec4); [all...] |
/external/libvpx/libvpx/vpx_dsp/x86/ |
inv_txfm_ssse3.c | 527 const __m128i stk1_8 = pair_set_epi16(2 * cospi_27_64, 2 * cospi_27_64); 827 const __m128i stk1_8 = pair_set_epi16(2 * cospi_27_64, 2 * cospi_27_64); [all...] |
inv_txfm_sse2.c | [all...] |
fwd_dct32x32_impl_avx2.h | 83 const __m256i k__cospi_p27_p05 = pair256_set_epi16(+cospi_27_64, cospi_5_64); 90 const __m256i k__cospi_m05_p27 = pair256_set_epi16(-cospi_5_64, cospi_27_64); [all...] |
fwd_dct32x32_impl_sse2.h | 93 const __m128i k__cospi_p27_p05 = pair_set_epi16(+cospi_27_64, cospi_5_64); 100 const __m128i k__cospi_m05_p27 = pair_set_epi16(-cospi_5_64, cospi_27_64); [all...] |
/external/libvpx/libvpx/vpx_dsp/arm/ |
highbd_idct32x32_34_add_neon.c | 73 s1[20] = multiply_shift_and_narrow_s32_dual(in[5], cospi_27_64); 388 s1[20] = multiply_shift_and_narrow_s32_dual(in[5], cospi_27_64);
|
idct32x32_135_add_neon.c | 115 s1[20] = multiply_shift_and_narrow_s16(in[5], cospi_27_64); 399 s1[20] = multiply_shift_and_narrow_s16(in[5], cospi_27_64);
|
idct32x32_34_add_neon.c | 66 s1[20] = multiply_shift_and_narrow_s16(in[5], cospi_27_64); 284 s1[20] = multiply_shift_and_narrow_s16(in[5], cospi_27_64);
|
highbd_idct32x32_135_add_neon.c | 125 s1[20] = multiply_shift_and_narrow_s32_dual(in[5], cospi_27_64); 475 s1[20] = multiply_shift_and_narrow_s32_dual(in[5], cospi_27_64); [all...] |
highbd_idct32x32_1024_add_neon.c | 459 do_butterfly(q[14], q[13], cospi_27_64, cospi_5_64, &q[0], &q[2]);
|
idct32x32_add_neon.c | 589 do_butterfly(q[14], q[13], cospi_27_64, cospi_5_64, &q[0], &q[2]);
|
/external/libvpx/libvpx/vp9/encoder/ |
vp9_dct.c | 370 s2 = x2 * cospi_5_64 + x3 * cospi_27_64; 371 s3 = x2 * cospi_27_64 - x3 * cospi_5_64;
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_dct_intrin_sse2.c | [all...] |