/external/libvpx/libvpx/vpx_dsp/ |
txfm_common.h | 36 static const tran_high_t cospi_9_64 = 14811; variable
|
inv_txfm.c | 417 s4 = x4 * cospi_9_64 + x5 * cospi_23_64; 418 s5 = x4 * cospi_23_64 - x5 * cospi_9_64; 841 temp1 = input[9] * cospi_23_64 - input[23] * cospi_9_64; 842 temp2 = input[9] * cospi_9_64 + input[23] * cospi_23_64; [all...] |
fwd_txfm.c | 692 output[9] = dct_32_round(step[18] * cospi_23_64 + step[29] * cospi_9_64); 703 output[23] = dct_32_round(step[29] * cospi_23_64 + step[18] * -cospi_9_64);
|
/external/libvpx/libvpx/vpx_dsp/mips/ |
itrans32_cols_dspr2.c | 125 "msub $ac1, %[load2], %[cospi_9_64] \n\t" 128 "madd $ac3, %[load1], %[cospi_9_64] \n\t" 169 [cospi_23_64] "r"(cospi_23_64), [cospi_9_64] "r"(cospi_9_64), [all...] |
itrans32_dspr2.c | 169 "msub $ac1, %[load2], %[cospi_9_64] \n\t" 172 "madd $ac3, %[load1], %[cospi_9_64] \n\t" 213 [cospi_23_64] "r"(cospi_23_64), [cospi_9_64] "r"(cospi_9_64), [all...] |
idct16x16_msa.c | 351 k0 = VP9_SET_COSPI_PAIR(cospi_9_64, cospi_23_64); 352 k1 = VP9_SET_COSPI_PAIR(cospi_23_64, -cospi_9_64);
|
inv_txfm_msa.h | 356 k0_m = VP9_SET_COSPI_PAIR(cospi_9_64, cospi_23_64); \ 357 k1_m = VP9_SET_COSPI_PAIR(cospi_23_64, -cospi_9_64); \
|
itrans16_dspr2.c | [all...] |
idct32x32_msa.c | 142 DOTP_CONST_PAIR(reg2, reg5, cospi_23_64, cospi_9_64, reg2, reg5); 448 DOTP_CONST_PAIR(reg2, reg5, cospi_23_64, cospi_9_64, reg2, reg5);
|
fwd_dct32x32_msa.c | 201 DOTP_CONST_PAIR(in20, in23, cospi_23_64, cospi_9_64, vec4, vec5); 538 DOTP_CONST_PAIR(in20, in23, cospi_23_64, cospi_9_64, vec4, vec5); 852 DOTP_CONST_PAIR(in20, in23, cospi_23_64, cospi_9_64, vec4, vec5); [all...] |
/external/libvpx/libvpx/vpx_dsp/arm/ |
idct32x32_135_add_neon.c | 110 s1[29] = multiply_shift_and_narrow_s16(in[9], cospi_9_64); 394 s1[29] = multiply_shift_and_narrow_s16(in[9], cospi_9_64);
|
highbd_idct32x32_135_add_neon.c | 120 s1[29] = multiply_shift_and_narrow_s32_dual(in[9], cospi_9_64); 470 s1[29] = multiply_shift_and_narrow_s32_dual(in[9], cospi_9_64); [all...] |
highbd_idct32x32_1024_add_neon.c | 424 do_butterfly(q[14], q[13], cospi_23_64, cospi_9_64, &q[0], &q[2]);
|
idct32x32_add_neon.c | 554 do_butterfly(q[14], q[13], cospi_23_64, cospi_9_64, &q[0], &q[2]);
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
inv_txfm_ssse3.c | 824 const __m128i stk1_5 = pair_set_epi16(2 * cospi_9_64, 2 * cospi_9_64); [all...] |
fwd_dct32x32_impl_avx2.h | 77 const __m256i k__cospi_p23_p09 = pair256_set_epi16(+cospi_23_64, cospi_9_64); 80 const __m256i k__cospi_m09_p23 = pair256_set_epi16(-cospi_9_64, cospi_23_64); [all...] |
inv_txfm_sse2.c | [all...] |
fwd_dct32x32_impl_sse2.h | 87 const __m128i k__cospi_p23_p09 = pair_set_epi16(+cospi_23_64, cospi_9_64); 90 const __m128i k__cospi_m09_p23 = pair_set_epi16(-cospi_9_64, cospi_23_64); [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_dct.c | 372 s4 = x4 * cospi_9_64 + x5 * cospi_23_64; 373 s5 = x4 * cospi_23_64 - x5 * cospi_9_64;
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_dct_intrin_sse2.c | [all...] |