Searched refs:should_round (Results 1 – 4 of 4) sorted by relevance
/external/libgav1/libgav1/src/dsp/arm/ |
D | inverse_transform_neon.cc | 447 bool should_round, int row_shift) { in DctDcOnly() argument 452 const uint16x8_t v_mask = vdupq_n_u16(should_round ? 0xffff : 0); in DctDcOnly() 1230 bool should_round, int row_shift) { in Adst4DcOnly() argument 1237 const uint16x4_t v_mask = vdup_n_u16(should_round ? 0xffff : 0); in Adst4DcOnly() 1381 bool should_round, int row_shift) { in Adst8DcOnly() argument 1388 const uint16x8_t v_mask = vdupq_n_u16(should_round ? 0xffff : 0); in Adst8DcOnly() 1700 bool should_round, int row_shift) { in Adst16DcOnly() argument 1708 const uint16x8_t v_mask = vdupq_n_u16(should_round ? 0xffff : 0); in Adst16DcOnly() 1786 bool should_round, int tx_height) { in Identity4DcOnly() argument 1791 const uint16x4_t v_mask = vdup_n_u16(should_round ? 0xffff : 0); in Identity4DcOnly() [all …]
|
D | inverse_transform_10bit_neon.cc | 193 bool should_round, int row_shift) { in DctDcOnly() argument 198 const uint32x4_t v_mask = vdupq_n_u32(should_round ? 0xffffffff : 0); in DctDcOnly() 992 bool should_round, int row_shift) { in Adst4DcOnly() argument 999 const uint32x4_t v_mask = vdupq_n_u32(should_round ? 0xffffffff : 0); in Adst4DcOnly() 1136 bool should_round, int row_shift) { in Adst8DcOnly() argument 1143 const uint32x4_t v_mask = vdupq_n_u32(should_round ? 0xffffffff : 0); in Adst8DcOnly() 1430 bool should_round, int row_shift) { in Adst16DcOnly() argument 1437 const uint32x4_t v_mask = vdupq_n_u32(should_round ? 0xffffffff : 0); in Adst16DcOnly() 1498 bool should_round, int tx_height) { in Identity4DcOnly() argument 1503 const uint32x4_t v_mask = vdupq_n_u32(should_round ? 0xffffffff : 0); in Identity4DcOnly() [all …]
|
/external/libgav1/libgav1/src/dsp/x86/ |
D | inverse_transform_sse4.cc | 223 bool should_round, int row_shift) { in DctDcOnly() argument 231 _mm_set1_epi16(should_round ? static_cast<int16_t>(0xffff) : 0); in DctDcOnly() 1035 bool should_round, int row_shift) { in Adst4DcOnly() argument 1042 _mm_set1_epi16(should_round ? static_cast<int16_t>(0xffff) : 0); in Adst4DcOnly() 1190 bool should_round, int row_shift) { in Adst8DcOnly() argument 1198 _mm_set1_epi16(should_round ? static_cast<int16_t>(0xffff) : 0); in Adst8DcOnly() 1515 bool should_round, int row_shift) { in Adst16DcOnly() argument 1524 _mm_set1_epi16(should_round ? static_cast<int16_t>(0xffff) : 0); in Adst16DcOnly() 1615 bool should_round, int tx_height) { in Identity4DcOnly() argument 1621 _mm_set1_epi16(should_round ? static_cast<int16_t>(0xffff) : 0); in Identity4DcOnly() [all …]
|
/external/libgav1/libgav1/src/dsp/ |
D | inverse_transform.cc | 396 void DctDcOnly_C(void* dest, int8_t range, bool should_round, int row_shift, in DctDcOnly_C() argument 400 if (is_row && should_round) { in DctDcOnly_C() 486 void Adst4DcOnly_C(void* dest, int8_t range, bool should_round, int row_shift, in Adst4DcOnly_C() argument 490 if (is_row && should_round) { in Adst4DcOnly_C() 599 void Adst8DcOnly_C(void* dest, int8_t range, bool should_round, int row_shift, in Adst8DcOnly_C() argument 608 if (is_row && should_round) { in Adst8DcOnly_C() 698 void Adst16DcOnly_C(void* dest, int8_t range, bool should_round, int row_shift, in Adst16DcOnly_C() argument 707 if (is_row && should_round) { in Adst16DcOnly_C() 875 void Identity4DcOnly_C(void* dest, int8_t /*range*/, bool should_round, in Identity4DcOnly_C() argument 880 if (should_round) { in Identity4DcOnly_C() [all …]
|