/external/libaom/libaom/aom_dsp/ |
D | txfm_common.h | 44 static const tran_high_t cospi_1_64 = 16364; 45 static const tran_high_t cospi_2_64 = 16305; 46 static const tran_high_t cospi_3_64 = 16207; 47 static const tran_high_t cospi_4_64 = 16069; 48 static const tran_high_t cospi_5_64 = 15893; 49 static const tran_high_t cospi_6_64 = 15679; 50 static const tran_high_t cospi_7_64 = 15426; 51 static const tran_high_t cospi_8_64 = 15137; 52 static const tran_high_t cospi_9_64 = 14811; 53 static const tran_high_t cospi_10_64 = 14449; [all …]
|
D | fwd_txfm.c | 25 tran_high_t s0, s1, s2, s3, s4, s5, s6, s7; // canbe16 in aom_fdct8x8_c() 26 tran_high_t t0, t1, t2, t3; // needs32 in aom_fdct8x8_c() 27 tran_high_t x0, x1, x2, x3; // canbe16 in aom_fdct8x8_c()
|
D | aom_dsp_common.h | 58 typedef int64_t tran_high_t; typedef
|
/external/libvpx/libvpx/vpx_dsp/ |
D | inv_txfm.c | 23 tran_high_t a1, b1, c1, d1, e1; in vpx_iwht4x4_16_add_c() 72 tran_high_t a1, e1; in vpx_iwht4x4_1_add_c() 97 tran_high_t s0, s1, s2, s3, s4, s5, s6, s7; in iadst4_c() 135 tran_high_t temp1, temp2; in idct4_c() 180 tran_high_t a1; in vpx_idct4x4_1_add_c() 198 tran_high_t x0 = input[7]; in iadst8_c() 199 tran_high_t x1 = input[0]; in iadst8_c() 200 tran_high_t x2 = input[5]; in iadst8_c() 201 tran_high_t x3 = input[2]; in iadst8_c() 202 tran_high_t x4 = input[3]; in iadst8_c() [all …]
|
D | inv_txfm.h | 24 static INLINE tran_high_t check_range(tran_high_t input) { in check_range() 38 static INLINE tran_high_t dct_const_round_shift(tran_high_t input) { in dct_const_round_shift() 39 tran_high_t rv = ROUND_POWER_OF_TWO(input, DCT_CONST_BITS); in dct_const_round_shift() 40 return (tran_high_t)rv; in dct_const_round_shift() 44 static INLINE tran_high_t highbd_check_range(tran_high_t input, int bd) { in highbd_check_range() 110 static INLINE uint16_t highbd_clip_pixel_add(uint16_t dest, tran_high_t trans, in highbd_clip_pixel_add() 117 static INLINE uint8_t clip_pixel_add(uint8_t dest, tran_high_t trans) { in clip_pixel_add()
|
D | fwd_txfm.h | 16 static INLINE tran_high_t fdct_round_shift(tran_high_t input) { in fdct_round_shift() 17 tran_high_t rv = ROUND_POWER_OF_TWO(input, DCT_CONST_BITS); in fdct_round_shift() 24 void vpx_fdct32(const tran_high_t *input, tran_high_t *output, int round);
|
D | fwd_txfm.c | 29 tran_high_t in_high[4]; // canbe16 in vpx_fdct4x4_c() 30 tran_high_t step[4]; // canbe16 in vpx_fdct4x4_c() 31 tran_high_t temp1, temp2; // needs32 in vpx_fdct4x4_c() 99 tran_high_t s0, s1, s2, s3, s4, s5, s6, s7; // canbe16 in vpx_fdct8x8_c() 100 tran_high_t t0, t1, t2, t3; // needs32 in vpx_fdct8x8_c() 101 tran_high_t x0, x1, x2, x3; // canbe16 in vpx_fdct8x8_c() 197 tran_high_t step1[8]; // canbe16 in vpx_fdct16x16_c() 198 tran_high_t step2[8]; // canbe16 in vpx_fdct16x16_c() 199 tran_high_t step3[8]; // canbe16 in vpx_fdct16x16_c() 200 tran_high_t in_high[8]; // canbe16 in vpx_fdct16x16_c() [all …]
|
D | vpx_dsp_common.h | 36 typedef int64_t tran_high_t; typedef 42 typedef int32_t tran_high_t;
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_dct.c | 24 tran_high_t step[4]; in fdct4() 25 tran_high_t temp1, temp2; in fdct4() 43 tran_high_t s0, s1, s2, s3, s4, s5, s6, s7; // canbe16 in fdct8() 44 tran_high_t t0, t1, t2, t3; // needs32 in fdct8() 45 tran_high_t x0, x1, x2, x3; // canbe16 in fdct8() 95 tran_high_t step1[8]; // canbe16 in fdct16() 96 tran_high_t step2[8]; // canbe16 in fdct16() 97 tran_high_t step3[8]; // canbe16 in fdct16() 98 tran_high_t input[8]; // canbe16 in fdct16() 99 tran_high_t temp1, temp2; // needs32 in fdct16() [all …]
|
/external/libvpx/libvpx/vpx_dsp/arm/ |
D | highbd_idct4x4_add_neon.c | 41 dct_const_round_shift(input[0] * (tran_high_t)cospi_16_64), bd); in vpx_highbd_idct4x4_1_add_neon() 43 dct_const_round_shift(out0 * (tran_high_t)cospi_16_64), bd); in vpx_highbd_idct4x4_1_add_neon()
|
D | highbd_idct32x32_add_neon.c | 65 dct_const_round_shift(input[0] * (tran_high_t)cospi_16_64), bd); in vpx_highbd_idct32x32_1_add_neon() 67 dct_const_round_shift(out0 * (tran_high_t)cospi_16_64), bd); in vpx_highbd_idct32x32_1_add_neon()
|
D | highbd_idct8x8_add_neon.c | 43 dct_const_round_shift(input[0] * (tran_high_t)cospi_16_64), bd); in vpx_highbd_idct8x8_1_add_neon() 45 dct_const_round_shift(out0 * (tran_high_t)cospi_16_64), bd); in vpx_highbd_idct8x8_1_add_neon()
|
D | fdct16x16_neon.c | 154 const tran_high_t c, int16x8_t *add, in butterfly_one_coeff()
|
D | fdct32x32_neon.c | 199 const tran_high_t constant, in butterfly_one_coeff() 567 const int16x8_t a, const int16x8_t b, const tran_high_t constant, in butterfly_one_coeff_s16_s32()
|
D | highbd_idct16x16_add_neon.c | 1337 dct_const_round_shift(input[0] * (tran_high_t)cospi_16_64), bd); in vpx_highbd_idct16x16_1_add_neon() 1339 dct_const_round_shift(out0 * (tran_high_t)cospi_16_64), bd); in vpx_highbd_idct16x16_1_add_neon()
|
/external/libvpx/libvpx/vpx_dsp/x86/ |
D | highbd_idct4x4_add_sse2.c | 148 dct_const_round_shift(input[0] * (tran_high_t)cospi_16_64), bd); in vpx_highbd_idct4x4_1_add_sse2() 150 HIGHBD_WRAPLOW(dct_const_round_shift(out * (tran_high_t)cospi_16_64), bd); in vpx_highbd_idct4x4_1_add_sse2()
|
D | highbd_inv_txfm_sse2.h | 273 dct_const_round_shift(input[0] * (tran_high_t)cospi_16_64), bd); in highbd_idct_1_add_kernel() 275 HIGHBD_WRAPLOW(dct_const_round_shift(out * (tran_high_t)cospi_16_64), bd); in highbd_idct_1_add_kernel()
|
D | inv_txfm_sse2.c | 207 tran_high_t a1; in vpx_idct8x8_1_add_sse2() 503 tran_high_t a1; in vpx_idct16x16_1_add_sse2() 1223 tran_high_t a1; in vpx_idct32x32_1_add_sse2()
|
D | fwd_dct32x32_impl_sse2.h | 27 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rows_c() 42 tran_high_t temp_in[32], temp_out[32]; in vpx_fdct32x32_rd_rows_c()
|
/external/libaom/libaom/test/ |
D | av1_txfm_test.cc | 126 tran_high_t x0, x1, x2, x3; in fadst4_new() 127 tran_high_t s0, s1, s2, s3, s4, s5, s6, s7; in fadst4_new()
|
/external/libaom/libaom/av1/common/ |
D | av1_txfm.h | 104 static INLINE uint16_t highbd_clip_pixel_add(uint16_t dest, tran_high_t trans, in highbd_clip_pixel_add()
|
/external/libaom/libaom/av1/encoder/ |
D | hybrid_fwd_txfm.c | 23 tran_high_t a1, b1, c1, d1, e1; in av1_fwht4x4_c()
|