Lines Matching refs:stride
20 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht4x4_16_add_c() argument
46 dest[j * stride + i] = clip_pixel_add(dest[j * stride + i], in vp9_iht4x4_16_add_c()
59 void vp9_iht8x8_64_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht8x8_64_add_c() argument
79 dest[j * stride + i] = clip_pixel_add(dest[j * stride + i], in vp9_iht8x8_64_add_c()
92 void vp9_iht16x16_256_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht16x16_256_add_c() argument
112 dest[j * stride + i] = clip_pixel_add(dest[j * stride + i], in vp9_iht16x16_256_add_c()
119 void vp9_idct4x4_add(const tran_low_t *input, uint8_t *dest, int stride, in vp9_idct4x4_add() argument
122 vpx_idct4x4_16_add(input, dest, stride); in vp9_idct4x4_add()
124 vpx_idct4x4_1_add(input, dest, stride); in vp9_idct4x4_add()
127 void vp9_iwht4x4_add(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iwht4x4_add() argument
130 vpx_iwht4x4_16_add(input, dest, stride); in vp9_iwht4x4_add()
132 vpx_iwht4x4_1_add(input, dest, stride); in vp9_iwht4x4_add()
135 void vp9_idct8x8_add(const tran_low_t *input, uint8_t *dest, int stride, in vp9_idct8x8_add() argument
144 vpx_idct8x8_1_add(input, dest, stride); in vp9_idct8x8_add()
146 vpx_idct8x8_12_add(input, dest, stride); in vp9_idct8x8_add()
148 vpx_idct8x8_64_add(input, dest, stride); in vp9_idct8x8_add()
151 void vp9_idct16x16_add(const tran_low_t *input, uint8_t *dest, int stride, in vp9_idct16x16_add() argument
156 vpx_idct16x16_1_add(input, dest, stride); in vp9_idct16x16_add()
158 vpx_idct16x16_10_add(input, dest, stride); in vp9_idct16x16_add()
160 vpx_idct16x16_38_add(input, dest, stride); in vp9_idct16x16_add()
162 vpx_idct16x16_256_add(input, dest, stride); in vp9_idct16x16_add()
165 void vp9_idct32x32_add(const tran_low_t *input, uint8_t *dest, int stride, in vp9_idct32x32_add() argument
168 vpx_idct32x32_1_add(input, dest, stride); in vp9_idct32x32_add()
171 vpx_idct32x32_34_add(input, dest, stride); in vp9_idct32x32_add()
174 vpx_idct32x32_135_add(input, dest, stride); in vp9_idct32x32_add()
176 vpx_idct32x32_1024_add(input, dest, stride); in vp9_idct32x32_add()
181 int stride, int eob) { in vp9_iht4x4_add() argument
183 vp9_idct4x4_add(input, dest, stride, eob); in vp9_iht4x4_add()
185 vp9_iht4x4_16_add(input, dest, stride, tx_type); in vp9_iht4x4_add()
189 int stride, int eob) { in vp9_iht8x8_add() argument
191 vp9_idct8x8_add(input, dest, stride, eob); in vp9_iht8x8_add()
193 vp9_iht8x8_64_add(input, dest, stride, tx_type); in vp9_iht8x8_add()
198 int stride, int eob) { in vp9_iht16x16_add() argument
200 vp9_idct16x16_add(input, dest, stride, eob); in vp9_iht16x16_add()
202 vp9_iht16x16_256_add(input, dest, stride, tx_type); in vp9_iht16x16_add()
209 int stride, int tx_type, int bd) { in vp9_highbd_iht4x4_16_add_c() argument
234 dest[j * stride + i] = highbd_clip_pixel_add( in vp9_highbd_iht4x4_16_add_c()
235 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 4), bd); in vp9_highbd_iht4x4_16_add_c()
248 int stride, int tx_type, int bd) { in vp9_highbd_iht8x8_64_add_c() argument
267 dest[j * stride + i] = highbd_clip_pixel_add( in vp9_highbd_iht8x8_64_add_c()
268 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 5), bd); in vp9_highbd_iht8x8_64_add_c()
281 int stride, int tx_type, int bd) { in vp9_highbd_iht16x16_256_add_c() argument
300 dest[j * stride + i] = highbd_clip_pixel_add( in vp9_highbd_iht16x16_256_add_c()
301 dest[j * stride + i], ROUND_POWER_OF_TWO(temp_out[j], 6), bd); in vp9_highbd_iht16x16_256_add_c()
307 void vp9_highbd_idct4x4_add(const tran_low_t *input, uint16_t *dest, int stride, in vp9_highbd_idct4x4_add() argument
310 vpx_highbd_idct4x4_16_add(input, dest, stride, bd); in vp9_highbd_idct4x4_add()
312 vpx_highbd_idct4x4_1_add(input, dest, stride, bd); in vp9_highbd_idct4x4_add()
315 void vp9_highbd_iwht4x4_add(const tran_low_t *input, uint16_t *dest, int stride, in vp9_highbd_iwht4x4_add() argument
318 vpx_highbd_iwht4x4_16_add(input, dest, stride, bd); in vp9_highbd_iwht4x4_add()
320 vpx_highbd_iwht4x4_1_add(input, dest, stride, bd); in vp9_highbd_iwht4x4_add()
323 void vp9_highbd_idct8x8_add(const tran_low_t *input, uint16_t *dest, int stride, in vp9_highbd_idct8x8_add() argument
332 vpx_highbd_idct8x8_1_add(input, dest, stride, bd); in vp9_highbd_idct8x8_add()
334 vpx_highbd_idct8x8_12_add(input, dest, stride, bd); in vp9_highbd_idct8x8_add()
336 vpx_highbd_idct8x8_64_add(input, dest, stride, bd); in vp9_highbd_idct8x8_add()
341 int stride, int eob, int bd) { in vp9_highbd_idct16x16_add() argument
346 vpx_highbd_idct16x16_1_add(input, dest, stride, bd); in vp9_highbd_idct16x16_add()
348 vpx_highbd_idct16x16_10_add(input, dest, stride, bd); in vp9_highbd_idct16x16_add()
350 vpx_highbd_idct16x16_38_add(input, dest, stride, bd); in vp9_highbd_idct16x16_add()
352 vpx_highbd_idct16x16_256_add(input, dest, stride, bd); in vp9_highbd_idct16x16_add()
357 int stride, int eob, int bd) { in vp9_highbd_idct32x32_add() argument
360 vpx_highbd_idct32x32_1_add(input, dest, stride, bd); in vp9_highbd_idct32x32_add()
362 vpx_highbd_idct32x32_34_add(input, dest, stride, bd); in vp9_highbd_idct32x32_add()
364 vpx_highbd_idct32x32_135_add(input, dest, stride, bd); in vp9_highbd_idct32x32_add()
366 vpx_highbd_idct32x32_1024_add(input, dest, stride, bd); in vp9_highbd_idct32x32_add()
372 uint16_t *dest, int stride, int eob, int bd) { in vp9_highbd_iht4x4_add() argument
374 vp9_highbd_idct4x4_add(input, dest, stride, eob, bd); in vp9_highbd_iht4x4_add()
376 vp9_highbd_iht4x4_16_add(input, dest, stride, tx_type, bd); in vp9_highbd_iht4x4_add()
380 uint16_t *dest, int stride, int eob, int bd) { in vp9_highbd_iht8x8_add() argument
382 vp9_highbd_idct8x8_add(input, dest, stride, eob, bd); in vp9_highbd_iht8x8_add()
384 vp9_highbd_iht8x8_64_add(input, dest, stride, tx_type, bd); in vp9_highbd_iht8x8_add()
389 uint16_t *dest, int stride, int eob, int bd) { in vp9_highbd_iht16x16_add() argument
391 vp9_highbd_idct16x16_add(input, dest, stride, eob, bd); in vp9_highbd_iht16x16_add()
393 vp9_highbd_iht16x16_256_add(input, dest, stride, tx_type, bd); in vp9_highbd_iht16x16_add()