Home
last modified time | relevance | path

Searched refs:stage_range (Results 1 – 11 of 11) sorted by relevance

/external/libaom/libaom/av1/common/
Dav1_inv_txfm1d.c20 const int8_t *stage_range) { in av1_idct4_new() argument
38 av1_range_check_buf(stage, input, bf1, size, stage_range[stage]); in av1_idct4_new()
48 av1_range_check_buf(stage, input, bf1, size, stage_range[stage]); in av1_idct4_new()
54 bf1[0] = clamp_value(bf0[0] + bf0[3], stage_range[stage]); in av1_idct4_new()
55 bf1[1] = clamp_value(bf0[1] + bf0[2], stage_range[stage]); in av1_idct4_new()
56 bf1[2] = clamp_value(bf0[1] - bf0[2], stage_range[stage]); in av1_idct4_new()
57 bf1[3] = clamp_value(bf0[0] - bf0[3], stage_range[stage]); in av1_idct4_new()
61 const int8_t *stage_range) { in av1_idct8_new() argument
83 av1_range_check_buf(stage, input, bf1, size, stage_range[stage]); in av1_idct8_new()
97 av1_range_check_buf(stage, input, bf1, size, stage_range[stage]); in av1_idct8_new()
[all …]
Dav1_inv_txfm1d.h33 const int8_t *stage_range);
35 const int8_t *stage_range);
37 const int8_t *stage_range);
39 const int8_t *stage_range);
41 const int8_t *stage_range);
43 const int8_t *stage_range);
45 const int8_t *stage_range);
47 const int8_t *stage_range);
49 const int8_t *stage_range);
51 const int8_t *stage_range);
[all …]
Dav1_txfm.h110 const int8_t *stage_range);
/external/libaom/libaom/av1/encoder/
Dav1_fwd_txfm1d.h22 const int8_t *stage_range);
24 const int8_t *stage_range);
26 const int8_t *stage_range);
28 const int8_t *stage_range);
30 const int8_t *stage_range);
32 const int8_t *stage_range);
34 const int8_t *stage_range);
36 const int8_t *stage_range);
38 const int8_t *stage_range);
40 const int8_t *stage_range);
[all …]
Dav1_fwd_txfm1d.c17 const int8_t *stage_range) { in av1_fdct4_new() argument
26 av1_range_check_buf(stage, input, input, size, stage_range[stage]); in av1_fdct4_new()
35 av1_range_check_buf(stage, input, bf1, size, stage_range[stage]); in av1_fdct4_new()
46 av1_range_check_buf(stage, input, bf1, size, stage_range[stage]); in av1_fdct4_new()
56 av1_range_check_buf(stage, input, bf1, size, stage_range[stage]); in av1_fdct4_new()
60 const int8_t *stage_range) { in av1_fdct8_new() argument
69 av1_range_check_buf(stage, input, input, size, stage_range[stage]); in av1_fdct8_new()
82 av1_range_check_buf(stage, input, bf1, size, stage_range[stage]); in av1_fdct8_new()
97 av1_range_check_buf(stage, input, bf1, size, stage_range[stage]); in av1_fdct8_new()
112 av1_range_check_buf(stage, input, bf1, size, stage_range[stage]); in av1_fdct8_new()
[all …]
/external/libaom/libaom/av1/encoder/x86/
Dav1_txfm1d_sse4.h24 const int8_t cos_bit, const int8_t *stage_range);
26 const int8_t cos_bit, const int8_t *stage_range);
28 const int8_t cos_bit, const int8_t *stage_range);
34 const int8_t cos_bit, const int8_t *stage_range);
36 const int8_t cos_bit, const int8_t *stage_range);
38 const int8_t cos_bit, const int8_t *stage_range);
41 const int8_t cos_bit, const int8_t *stage_range);
43 const int8_t cos_bit, const int8_t *stage_range);
45 const int8_t cos_bit, const int8_t *stage_range);
47 const int8_t cos_bit, const int8_t *stage_range);
[all …]
Dav1_fwd_txfm2d_sse4.c33 const int8_t cos_bit, const int8_t *stage_range);
36 const int8_t cos_bit, const int8_t *stage_range) { in fdct32_new_sse4_1() argument
41 (void)stage_range; in fdct32_new_sse4_1()
48 const int8_t cos_bit, const int8_t *stage_range) { in fdct64_new_sse4_1() argument
52 (void)stage_range; in fdct64_new_sse4_1()
59 const int8_t cos_bit, const int8_t *stage_range) { in idtx32x32_sse4_1() argument
60 (void)stage_range; in idtx32x32_sse4_1()
Dav1_fwd_txfm1d_sse4.c400 const int8_t cos_bit, const int8_t *stage_range) { in av1_fadst4_new_sse4_1() argument
408 (void)stage_range; in av1_fadst4_new_sse4_1()
/external/libaom/libaom/test/
Dav1_txfm_test.cc360 void txfm_stage_range_check(const int8_t *stage_range, int stage_num, in txfm_stage_range_check() argument
363 EXPECT_LE(stage_range[i], low_range); in txfm_stage_range_check()
364 ASSERT_LE(stage_range[i] + cos_bit, high_range) << "stage = " << i; in txfm_stage_range_check()
368 ASSERT_LE(stage_range[i + 1] + cos_bit, high_range) << "stage = " << i; in txfm_stage_range_check()
Dav1_txfm_test.h131 void txfm_stage_range_check(const int8_t *stage_range, int stage_num,
/external/libaom/libaom/av1/common/arm/
Dav1_inv_txfm_neon.c3925 const int8_t stage_range[MAX_TXFM_STAGE_NUM] = { 16 }; in lowbd_inv_txfm2d_add_4x4_neon() local
3936 row_txfm(input, buf_ptr, cos_bit_row, stage_range); in lowbd_inv_txfm2d_add_4x4_neon()
3951 col_txfm(temp_in, temp_out, cos_bit_col, stage_range); in lowbd_inv_txfm2d_add_4x4_neon()
3987 const int8_t stage_range[MAX_TXFM_STAGE_NUM] = { 16 }; in lowbd_inv_txfm2d_add_4x8_neon() local
4001 row_txfm(temp_in, buf_ptr, cos_bit_row, stage_range); in lowbd_inv_txfm2d_add_4x8_neon()
4015 col_txfm(temp_in, temp_out, cos_bit_col, stage_range); in lowbd_inv_txfm2d_add_4x8_neon()
4051 const int8_t stage_range[MAX_TXFM_STAGE_NUM] = { 16 }; in lowbd_inv_txfm2d_add_8x4_neon() local
4065 row_txfm(temp_in, buf_ptr, cos_bit_row, stage_range); in lowbd_inv_txfm2d_add_8x4_neon()
4079 col_txfm(temp_in, temp_out, cos_bit_col, stage_range); in lowbd_inv_txfm2d_add_8x4_neon()
4115 const int8_t stage_range[MAX_TXFM_STAGE_NUM] = { 16 }; in lowbd_inv_txfm2d_add_4x16_neon() local
[all …]