HomeSort by relevance Sort by last modified time
    Searched refs:cospi_9_64 (Results 1 - 23 of 23) sorted by null

  /external/libvpx/libvpx/vpx_dsp/
txfm_common.h 36 static const tran_coef_t cospi_9_64 = 14811; variable
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);
inv_txfm.c 420 s4 = x4 * cospi_9_64 + x5 * cospi_23_64;
421 s5 = x4 * cospi_23_64 - x5 * cospi_9_64;
845 temp1 = (int16_t)input[9] * cospi_23_64 - (int16_t)input[23] * cospi_9_64;
846 temp2 = (int16_t)input[9] * cospi_9_64 + (int16_t)input[23] * cospi_23_64;
    [all...]
  /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/x86/
inv_txfm_ssse3.c 279 partial_butterfly_ssse3(in[9], cospi_23_64, cospi_9_64, &step1[18],
highbd_idct32x32_add_sse2.c 233 highbd_butterfly_sse2(in[9], in[23], cospi_23_64, cospi_9_64, &step1[18],
457 highbd_partial_butterfly_sse2(in[9], cospi_23_64, cospi_9_64, &step1[18],
highbd_idct32x32_add_sse4.c 237 highbd_butterfly_sse4_1(in[9], in[23], cospi_23_64, cospi_9_64, &step1[18],
461 highbd_partial_butterfly_sse4_1(in[9], cospi_23_64, cospi_9_64, &step1[18],
inv_txfm_sse2.c 571 const __m128i k__cospi_p09_p23 = pair_set_epi16(cospi_9_64, cospi_23_64);
572 const __m128i k__cospi_p23_m09 = pair_set_epi16(cospi_23_64, -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...]
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/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...]
fdct32x32_neon.c 492 butterfly_two_coeff(b[29], b[18], cospi_23_64, cospi_9_64, &a[9], &a[23]);
    [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/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...]

Completed in 617 milliseconds