Searched refs:txfm_size (Results 1 – 7 of 7) sorted by relevance
/external/libaom/libaom/test/ |
D | av1_fwd_txfm1d_test.cc | 67 int txfm_size = txfm_size_ls[si]; in TEST() local 68 int32_t *input = new int32_t[txfm_size]; in TEST() 69 int32_t *output = new int32_t[txfm_size]; in TEST() 70 double *ref_input = new double[txfm_size]; in TEST() 71 double *ref_output = new double[txfm_size]; in TEST() 81 for (int ni = 0; ni < txfm_size; ++ni) { in TEST() 87 reference_hybrid_1d(ref_input, ref_output, txfm_size, txfm_type); in TEST() 89 for (int ni = 0; ni < txfm_size; ++ni) { in TEST() 93 << "tx size = " << txfm_size << ", tx type = " << txfm_type; in TEST()
|
D | av1_inv_txfm1d_test.cc | 122 int txfm_size = txfm_size_ls[si]; in TEST() local 137 ASSERT_LE(txfm_size, NELEMENTS(input)); in TEST() 139 for (int ni = 0; ni < txfm_size; ++ni) { in TEST() 146 for (int ni = 0; ni < txfm_size; ++ni) { in TEST() 149 get_max_bit(txfm_size) - 1)); in TEST()
|
/external/libaom/libaom/av1/encoder/x86/ |
D | av1_fwd_txfm2d_sse4.c | 37 const int txfm_size = 32; in fdct32_sse4_1() local 39 int col_num = txfm_size / num_per_128; in fdct32_sse4_1() 49 const int txfm_size = 64; in fdct64_new_sse4_1() local 51 int col_num = txfm_size / num_per_128; in fdct64_new_sse4_1() 86 const int txfm_size = tx_size_wide[cfg->tx_size]; in fwd_txfm2d_sse4_1() local 98 int txfm2d_size_128 = txfm_size * txfm_size / num_per_128; in fwd_txfm2d_sse4_1() 101 txfm_size); in fwd_txfm2d_sse4_1() 105 transpose_32(txfm_size, out_128, buf_128); in fwd_txfm2d_sse4_1() 108 transpose_32(txfm_size, buf_128, out_128); in fwd_txfm2d_sse4_1() 116 const int txfm_size = tx_size_wide[cfg->tx_size]; in fwd_txfm2d_64x64_sse4_1() local [all …]
|
D | av1_txfm1d_sse4.h | 78 static INLINE void transpose_32(int txfm_size, const __m128i *input, in transpose_32() argument 81 const int row_size = txfm_size; in transpose_32() 82 const int col_size = txfm_size / num_per_128; in transpose_32()
|
D | av1_fwd_txfm1d_sse4.c | 401 const int txfm_size = 4; in av1_fadst4_sse4_1() local 406 int col_num = txfm_size / num_per_128; in av1_fadst4_sse4_1()
|
/external/libaom/libaom/tools/txfm_analyzer/ |
D | txfm_graph.cc | 21 const int txfm_size) { in get_fun_name() argument 23 snprintf(str_fun_name, str_buf_size, "fdct%d_new", txfm_size); in get_fun_name() 25 snprintf(str_fun_name, str_buf_size, "fadst%d_new", txfm_size); in get_fun_name() 27 snprintf(str_fun_name, str_buf_size, "idct%d_new", txfm_size); in get_fun_name() 29 snprintf(str_fun_name, str_buf_size, "iadst%d_new", txfm_size); in get_fun_name() 33 const TYPE_TXFM type, const int txfm_size) { in get_txfm_type_name() argument 35 snprintf(str_fun_name, str_buf_size, "TXFM_TYPE_DCT%d", txfm_size); in get_txfm_type_name() 37 snprintf(str_fun_name, str_buf_size, "TXFM_TYPE_ADST%d", txfm_size); in get_txfm_type_name() 39 snprintf(str_fun_name, str_buf_size, "TXFM_TYPE_DCT%d", txfm_size); in get_txfm_type_name() 41 snprintf(str_fun_name, str_buf_size, "TXFM_TYPE_ADST%d", txfm_size); in get_txfm_type_name()
|
D | txfm_graph.h | 40 const int txfm_size); 43 const TYPE_TXFM type, const int txfm_size);
|