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

  /external/libvpx/libvpx/vpx_dsp/
txfm_common.h 58 static const tran_high_t cospi_31_64 = 804; variable
inv_txfm.c 413 s0 = x0 * cospi_1_64 + x1 * cospi_31_64;
414 s1 = x0 * cospi_31_64 - x1 * cospi_1_64;
831 temp1 = input[1] * cospi_31_64 - input[31] * cospi_1_64;
832 temp2 = input[1] * cospi_1_64 + input[31] * cospi_31_64;
    [all...]
fwd_txfm.c 690 output[1] = dct_32_round(step[16] * cospi_31_64 + step[31] * cospi_1_64);
705 output[31] = dct_32_round(step[31] * cospi_31_64 + step[16] * -cospi_1_64);
  /external/libvpx/libvpx/vpx_dsp/mips/
itrans32_cols_dspr2.c 64 "madd $ac1, %[load1], %[cospi_31_64] \n\t"
69 "madd $ac3, %[load2], %[cospi_31_64] \n\t"
109 [cospi_31_64] "r"(cospi_31_64), [cospi_1_64] "r"(cospi_1_64),
    [all...]
itrans32_dspr2.c 108 "madd $ac1, %[load1], %[cospi_31_64] \n\t"
113 "madd $ac3, %[load2], %[cospi_31_64] \n\t"
153 [cospi_31_64] "r"(cospi_31_64), [cospi_1_64] "r"(cospi_1_64),
    [all...]
idct16x16_msa.c 346 k0 = VP9_SET_COSPI_PAIR(cospi_1_64, cospi_31_64);
347 k1 = VP9_SET_COSPI_PAIR(cospi_31_64, -cospi_1_64);
inv_txfm_msa.h 346 k0_m = VP9_SET_COSPI_PAIR(cospi_1_64, cospi_31_64); \
347 k1_m = VP9_SET_COSPI_PAIR(cospi_31_64, -cospi_1_64); \
itrans16_dspr2.c     [all...]
idct32x32_msa.c 140 DOTP_CONST_PAIR(reg0, reg7, cospi_31_64, cospi_1_64, reg0, reg7);
446 DOTP_CONST_PAIR(reg0, reg7, cospi_31_64, cospi_1_64, reg0, reg7);
fwd_dct32x32_msa.c 187 DOTP_CONST_PAIR(in20, in23, cospi_31_64, cospi_1_64, vec4, vec5);
522 DOTP_CONST_PAIR(in20, in23, cospi_31_64, cospi_1_64, vec4, vec5);
840 DOTP_CONST_PAIR(in20, in23, cospi_31_64, cospi_1_64, vec4, vec5);
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
inv_txfm_ssse3.c 523 const __m128i stk1_0 = pair_set_epi16(2 * cospi_31_64, 2 * cospi_31_64);
818 const __m128i stk1_0 = pair_set_epi16(2 * cospi_31_64, 2 * cospi_31_64);
    [all...]
inv_txfm_sse2.c     [all...]
fwd_dct32x32_impl_avx2.h 75 const __m256i k__cospi_p31_p01 = pair256_set_epi16(+cospi_31_64, cospi_1_64);
82 const __m256i k__cospi_m01_p31 = pair256_set_epi16(-cospi_1_64, cospi_31_64);
    [all...]
fwd_dct32x32_impl_sse2.h 85 const __m128i k__cospi_p31_p01 = pair_set_epi16(+cospi_31_64, cospi_1_64);
92 const __m128i k__cospi_m01_p31 = pair_set_epi16(-cospi_1_64, cospi_31_64);
    [all...]
  /external/libvpx/libvpx/vpx_dsp/arm/
highbd_idct32x32_34_add_neon.c 68 // input[1] * cospi_31_64 - input[31] * cospi_1_64 (but input[31] == 0)
69 s1[16] = multiply_shift_and_narrow_s32_dual(in[1], cospi_31_64);
70 // input[1] * cospi_1_64 + input[31] * cospi_31_64 (but input[31] == 0)
381 s1[16] = multiply_shift_and_narrow_s32_dual(in[1], cospi_31_64);
idct32x32_135_add_neon.c 106 s1[16] = multiply_shift_and_narrow_s16(in[1], cospi_31_64);
387 s1[16] = multiply_shift_and_narrow_s16(in[1], cospi_31_64);
idct32x32_34_add_neon.c 61 // input[1] * cospi_31_64 - input[31] * cospi_1_64 (but input[31] == 0)
62 s1[16] = multiply_shift_and_narrow_s16(in[1], cospi_31_64);
63 // input[1] * cospi_1_64 + input[31] * cospi_31_64 (but input[31] == 0)
277 s1[16] = multiply_shift_and_narrow_s16(in[1], cospi_31_64);
highbd_idct32x32_135_add_neon.c 116 s1[16] = multiply_shift_and_narrow_s32_dual(in[1], cospi_31_64);
463 s1[16] = multiply_shift_and_narrow_s32_dual(in[1], cospi_31_64);
    [all...]
highbd_idct32x32_1024_add_neon.c 410 do_butterfly(q[14], q[13], cospi_31_64, cospi_1_64, &q[0], &q[2]);
idct32x32_add_neon.c 540 do_butterfly(q[14], q[13], cospi_31_64, cospi_1_64, &q[0], &q[2]);
  /external/libvpx/libvpx/vp9/encoder/
vp9_dct.c 368 s0 = x0 * cospi_1_64 + x1 * cospi_31_64;
369 s1 = x0 * cospi_31_64 - x1 * cospi_1_64;
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_dct_intrin_sse2.c     [all...]

Completed in 5997 milliseconds