Home
last modified time | relevance | path

Searched refs:TX_TYPE (Results 1 – 25 of 57) sorted by relevance

123

/external/libaom/libaom/av1/encoder/
Dav1_fwd_txfm2d.c125 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_4x8_c()
133 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_8x4_c()
141 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_8x16_c()
149 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_16x8_c()
157 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_16x32_c()
165 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_32x16_c()
173 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_4x16_c()
181 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_16x4_c()
189 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_8x32_c()
197 TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_32x8_c()
[all …]
Dencodetxb.h36 TX_TYPE tx_type;
53 const TX_TYPE tx_type, const TXB_CTX *const txb_ctx);
79 int block, TX_SIZE tx_size, TX_TYPE tx_type,
Dhybrid_fwd_txfm.c83 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_fwd_txfm_4x4()
110 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_fwd_txfm_8x16()
118 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_fwd_txfm_16x8()
168 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_fwd_txfm_8x8()
176 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_fwd_txfm_16x16()
184 const TX_TYPE tx_type = txfm_param->tx_type; in highbd_fwd_txfm_32x32()
Dencodemb.h64 TX_SIZE tx_size, TX_TYPE tx_type,
68 int block, TX_SIZE tx_size, TX_TYPE tx_type,
/external/libaom/libaom/av1/common/x86/
Dav1_txfm_sse2.h260 int stride, TX_TYPE tx_type, int bd);
263 int stride, TX_TYPE tx_type, int bd);
266 int stride, TX_TYPE tx_type, int bd);
269 int stride, TX_TYPE tx_type, int bd);
272 int stride, TX_TYPE tx_type, int bd);
275 int stride, TX_TYPE tx_type, int bd);
278 int stride, TX_TYPE tx_type, int bd);
281 int stride, TX_TYPE tx_type, int bd);
284 int stride, TX_TYPE tx_type, int bd);
287 int stride, TX_TYPE tx_type, int bd);
[all …]
/external/libaom/libaom/test/
Dav1_inv_txfm2d_test.cc43 typedef ::testing::tuple<TX_TYPE, TX_SIZE, int, double> AV1InvTxfm2dParam;
142 TX_TYPE tx_type_;
196 const TX_TYPE tx_type = static_cast<TX_TYPE>(t); in GetInvTxfm2dParamList()
220 static_cast<TX_TYPE>(tx_type)) == in TEST()
225 av1_get_inv_txfm_cfg(static_cast<TX_TYPE>(tx_type), in TEST()
246 void RunAV1InvTxfm2dTest(TX_TYPE tx_type, TX_SIZE tx_size, int run_times);
252 void AV1LbdInvTxfm2d::RunAV1InvTxfm2dTest(TX_TYPE tx_type, TX_SIZE tx_size, in RunAV1InvTxfm2dTest()
329 static_cast<TX_TYPE>(i))) { in TEST_P()
330 RunAV1InvTxfm2dTest(static_cast<TX_TYPE>(i), static_cast<TX_SIZE>(j), in TEST_P()
341 static_cast<TX_TYPE>(i))) { in TEST_P()
[all …]
Dav1_fwd_txfm2d_test.cc35 typedef ::testing::tuple<TX_TYPE, TX_SIZE, double, double> AV1FwdTxfm2dParam;
124 TX_TYPE tx_type_;
188 const TX_TYPE tx_type = static_cast<TX_TYPE>(t); in GetTxfm2dParamList()
212 static_cast<TX_TYPE>(tx_type)) == in TEST()
217 av1_get_fwd_txfm_cfg(static_cast<TX_TYPE>(tx_type), in TEST()
245 tx_size, static_cast<TX_TYPE>(tx_type)) == false) { in AV1FwdTxfm2dMatchTest()
270 param.tx_type = (TX_TYPE)tx_type; in AV1FwdTxfm2dMatchTest()
274 ref_func(input, ref_output, input_stride, (TX_TYPE)tx_type, bd); in AV1FwdTxfm2dMatchTest()
302 tx_size, static_cast<TX_TYPE>(tx_type)) == false) { in AV1FwdTxfm2dSpeedTest()
320 param.tx_type = (TX_TYPE)tx_type; in AV1FwdTxfm2dSpeedTest()
[all …]
Dav1_txfm_test.h43 void get_txfm1d_type(TX_TYPE txfm2d_type, TYPE_TXFM *type0, TYPE_TXFM *type1);
52 double get_amplification_factor(TX_TYPE tx_type, TX_SIZE tx_size);
54 void reference_hybrid_2d(double *in, double *out, TX_TYPE tx_type,
79 typedef void (*InvTxfm2dFunc)(const int32_t *, uint16_t *, int, TX_TYPE, int);
80 typedef void (*LbdInvTxfm2dFunc)(const int32_t *, uint8_t *, int, TX_TYPE,
86 static INLINE bool IsTxSizeTypeValid(TX_SIZE tx_size, TX_TYPE tx_type) { in IsTxSizeTypeValid()
Dav1_highbd_iht_test.cc32 TX_TYPE tx_type, int bd);
35 TX_TYPE tx_type, int bd);
44 typedef tuple<HbdHtFunc, IHbdHtFunc, IHbdHtFunc, int, TX_TYPE, int> IHbdHtParam;
105 TX_TYPE tx_type_;
182 void RunAV1InvTxfm2dTest(TX_TYPE tx_type, TX_SIZE tx_size, int run_times,
189 void AV1HighbdInvTxfm2d::RunAV1InvTxfm2dTest(TX_TYPE tx_type_, TX_SIZE tx_size_, in RunAV1InvTxfm2dTest()
281 static_cast<TX_TYPE>(i))) { in TEST_P()
282 RunAV1InvTxfm2dTest(static_cast<TX_TYPE>(i), static_cast<TX_SIZE>(j), in TEST_P()
297 static_cast<TX_TYPE>(i))) { in TEST_P()
298 RunAV1InvTxfm2dTest(static_cast<TX_TYPE>(i), static_cast<TX_SIZE>(j), in TEST_P()
Dscan_test.cc105 static_cast<TX_TYPE>(tx_type)) == in TEST()
110 TX_CLASS tx_class = tx_type_to_class[(TX_TYPE)tx_type]; in TEST()
126 get_default_scan((TX_SIZE)tx_size, (TX_TYPE)tx_type); in TEST()
/external/libaom/libaom/av1/common/
Dav1_inv_txfm2d.c182 void av1_get_inv_txfm_cfg(TX_TYPE tx_type, TX_SIZE tx_size, in av1_get_inv_txfm_cfg()
340 TX_TYPE tx_type, TX_SIZE tx_size, in inv_txfm2d_add_facade()
350 int stride, TX_TYPE tx_type, int bd) { in av1_inv_txfm2d_add_4x8_c()
356 int stride, TX_TYPE tx_type, int bd) { in av1_inv_txfm2d_add_8x4_c()
362 int stride, TX_TYPE tx_type, int bd) { in av1_inv_txfm2d_add_8x16_c()
368 int stride, TX_TYPE tx_type, int bd) { in av1_inv_txfm2d_add_16x8_c()
374 int stride, TX_TYPE tx_type, int bd) { in av1_inv_txfm2d_add_16x32_c()
380 int stride, TX_TYPE tx_type, int bd) { in av1_inv_txfm2d_add_32x16_c()
386 int stride, TX_TYPE tx_type, int bd) { in av1_inv_txfm2d_add_4x4_c()
392 int stride, TX_TYPE tx_type, int bd) { in av1_inv_txfm2d_add_8x8_c()
[all …]
Dav1_txfm.h113 TX_TYPE tx_type, int bd);
147 static INLINE void get_flip_cfg(TX_TYPE tx_type, int *ud_flip, int *lr_flip) { in get_flip_cfg()
187 static INLINE void set_flip_cfg(TX_TYPE tx_type, TXFM_2D_FLIP_CFG *cfg) { in set_flip_cfg()
214 void av1_get_fwd_txfm_cfg(TX_TYPE tx_type, TX_SIZE tx_size,
216 void av1_get_inv_txfm_cfg(TX_TYPE tx_type, TX_SIZE tx_size,
Didct.c49 const TX_TYPE tx_type = txfm_param->tx_type; in av1_highbd_inv_txfm_add_4x4_c()
148 const TX_TYPE tx_type = txfm_param->tx_type; in av1_highbd_inv_txfm_add_8x8_c()
157 const TX_TYPE tx_type = txfm_param->tx_type; in av1_highbd_inv_txfm_add_16x16_c()
181 const TX_TYPE tx_type = txfm_param->tx_type; in av1_highbd_inv_txfm_add_32x32_c()
191 const TX_TYPE tx_type = txfm_param->tx_type; in av1_highbd_inv_txfm_add_64x64_c()
199 TX_TYPE tx_type, int eob, int reduced_tx_set, in init_txfm_param()
306 TX_TYPE tx_type, TX_SIZE tx_size, uint8_t *dst, in av1_inverse_transform_block()
Dscan.h43 TX_TYPE tx_type) { in get_default_scan()
47 static INLINE const SCAN_ORDER *get_scan(TX_SIZE tx_size, TX_TYPE tx_type) { in get_scan()
Dblockd.h257 TX_TYPE txk_type[TXK_TYPE_BUF_LEN];
637 static TX_TYPE intra_mode_to_tx_type(const MB_MODE_INFO *mbmi, in intra_mode_to_tx_type()
639 static const TX_TYPE _intra_mode_to_tx_type[INTRA_MODES] = { in intra_mode_to_tx_type()
769 static INLINE TX_TYPE get_default_tx_type(PLANE_TYPE plane_type, in get_default_tx_type()
822 static INLINE void update_txk_array(TX_TYPE *txk_type, BLOCK_SIZE bsize, in update_txk_array()
824 TX_TYPE tx_type) { in update_txk_array()
847 static INLINE TX_TYPE av1_get_tx_type(PLANE_TYPE plane_type, in av1_get_tx_type()
856 TX_TYPE tx_type; in av1_get_tx_type()
/external/libvpx/libvpx/vp9/common/
Dvp9_idct.h52 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
54 void vp9_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
56 void vp9_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest,
70 void vp9_highbd_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input,
72 void vp9_highbd_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input,
74 void vp9_highbd_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input,
Dvp9_idct.c180 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, in vp9_iht4x4_add()
188 void vp9_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, in vp9_iht8x8_add()
197 void vp9_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, in vp9_iht16x16_add()
371 void vp9_highbd_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, in vp9_highbd_iht4x4_add()
379 void vp9_highbd_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, in vp9_highbd_iht8x8_add()
388 void vp9_highbd_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, in vp9_highbd_iht16x16_add()
Dvp9_blockd.h212 extern const TX_TYPE intra_mode_to_tx_type_lookup[INTRA_MODES];
214 static INLINE TX_TYPE get_tx_type(PLANE_TYPE plane_type, in get_tx_type()
224 static INLINE TX_TYPE get_tx_type_4x4(PLANE_TYPE plane_type, in get_tx_type_4x4()
/external/linux-kselftest/tools/testing/selftests/networking/timestamping/
Dhwtstamp_config.c47 #define TX_TYPE(name) [HWTSTAMP_TX_ ## name] = #name macro
48 TX_TYPE(OFF),
49 TX_TYPE(ON),
50 TX_TYPE(ONESTEP_SYNC)
51 #undef TX_TYPE
/external/libaom/config/arm/config/
Dav1_rtcd.h213 void av1_inv_txfm2d_add_16x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
216 void av1_inv_txfm2d_add_16x32_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
219 void av1_inv_txfm2d_add_16x4_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
222 void av1_inv_txfm2d_add_16x64_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
225 void av1_inv_txfm2d_add_16x8_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
228 void av1_inv_txfm2d_add_32x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
231 void av1_inv_txfm2d_add_32x32_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
234 void av1_inv_txfm2d_add_32x64_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
237 void av1_inv_txfm2d_add_32x8_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
240 void av1_inv_txfm2d_add_4x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
[all …]
/external/libaom/config/x86/config/
Dav1_rtcd.h218 void av1_inv_txfm2d_add_16x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
221 void av1_inv_txfm2d_add_16x32_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
224 void av1_inv_txfm2d_add_16x4_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
227 void av1_inv_txfm2d_add_16x64_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
230 void av1_inv_txfm2d_add_16x8_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
233 void av1_inv_txfm2d_add_32x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
236 void av1_inv_txfm2d_add_32x32_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
239 void av1_inv_txfm2d_add_32x64_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
242 void av1_inv_txfm2d_add_32x8_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
245 void av1_inv_txfm2d_add_4x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
[all …]
/external/libaom/config/arm64/config/
Dav1_rtcd.h213 void av1_inv_txfm2d_add_16x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
216 void av1_inv_txfm2d_add_16x32_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
219 void av1_inv_txfm2d_add_16x4_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
222 void av1_inv_txfm2d_add_16x64_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
225 void av1_inv_txfm2d_add_16x8_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
228 void av1_inv_txfm2d_add_32x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
231 void av1_inv_txfm2d_add_32x32_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
234 void av1_inv_txfm2d_add_32x64_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
237 void av1_inv_txfm2d_add_32x8_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
240 void av1_inv_txfm2d_add_4x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
[all …]
/external/libaom/config/x86_64/config/
Dav1_rtcd.h221 void av1_inv_txfm2d_add_16x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
224 void av1_inv_txfm2d_add_16x32_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
227 void av1_inv_txfm2d_add_16x4_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
230 void av1_inv_txfm2d_add_16x64_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
233 void av1_inv_txfm2d_add_16x8_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
236 void av1_inv_txfm2d_add_32x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
239 void av1_inv_txfm2d_add_32x32_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
242 void av1_inv_txfm2d_add_32x64_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type…
245 void av1_inv_txfm2d_add_32x8_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
248 void av1_inv_txfm2d_add_4x16_c(const int32_t *input, uint16_t *output, int stride, TX_TYPE tx_type,…
[all …]
/external/libaom/libaom/av1/encoder/x86/
Dav1_fwd_txfm2d_sse4.c149 int stride, TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_32x32_sse4_1()
158 int stride, TX_TYPE tx_type, int bd) { in av1_fwd_txfm2d_64x64_sse4_1()
190 int stride, TX_TYPE tx_type, int bd) { in lowbd_fwd_txfm2d_64x64_sse4_1()
238 int stride, TX_TYPE tx_type, int bd) { in lowbd_fwd_txfm2d_64x32_sse4_1()
285 int stride, TX_TYPE tx_type, int bd) { in lowbd_fwd_txfm2d_32x64_sse4_1()
/external/libvpx/libvpx/test/
Dvp9_quantize_test.cc320 const TX_TYPE tx_type = static_cast<TX_TYPE>((i >> 2) % 3); in TEST_P()
374 const TX_TYPE tx_type = static_cast<TX_TYPE>((i >> 2) % 3); in TEST_P()
431 const TX_TYPE tx_type = DCT_DCT; in TEST_P()

123