Searched refs:WRAPLOW (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vpx_dsp/ |
D | inv_txfm.c | 37 op[0] = WRAPLOW(a1, 8); in vpx_iwht4x4_16_add_c() 38 op[1] = WRAPLOW(b1, 8); in vpx_iwht4x4_16_add_c() 39 op[2] = WRAPLOW(c1, 8); in vpx_iwht4x4_16_add_c() 40 op[3] = WRAPLOW(d1, 8); in vpx_iwht4x4_16_add_c() 78 op[0] = WRAPLOW(a1, 8); in vpx_iwht4x4_1_add_c() 79 op[1] = op[2] = op[3] = WRAPLOW(e1, 8); in vpx_iwht4x4_1_add_c() 100 step[0] = WRAPLOW(dct_const_round_shift(temp1), 8); in idct4_c() 101 step[1] = WRAPLOW(dct_const_round_shift(temp2), 8); in idct4_c() 104 step[2] = WRAPLOW(dct_const_round_shift(temp1), 8); in idct4_c() 105 step[3] = WRAPLOW(dct_const_round_shift(temp2), 8); in idct4_c() [all …]
|
D | inv_txfm.h | 86 #define WRAPLOW(x, bd) ((((int32_t)(x)) << (24 - bd)) >> (24 - bd)) macro 88 #define WRAPLOW(x, bd) ((int32_t)(x)) macro 110 trans = WRAPLOW(trans, bd); in highbd_clip_pixel_add() 111 return clip_pixel_highbd(WRAPLOW(dest + trans, bd), bd); in highbd_clip_pixel_add() 116 trans = WRAPLOW(trans, 8); in clip_pixel_add() 117 return clip_pixel(WRAPLOW(dest + trans, 8)); in clip_pixel_add()
|