Lines Matching refs:input
20 void vp9_iht4x4_16_add_c(const tran_low_t *input, uint8_t *dest, int stride, in vp9_iht4x4_16_add_c() argument
36 IHT_4[tx_type].rows(input, outptr); in vp9_iht4x4_16_add_c()
37 input += 4; 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
69 ht.rows(input, outptr); in vp9_iht8x8_64_add_c()
70 input += 8; 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
102 ht.rows(input, outptr); in vp9_iht16x16_256_add_c()
103 input += 16; 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()
180 void vp9_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, 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()
188 void vp9_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, 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()
197 void vp9_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, uint8_t *dest, 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()
208 void vp9_highbd_iht4x4_16_add_c(const tran_low_t *input, uint16_t *dest, in vp9_highbd_iht4x4_16_add_c() argument
224 IHT_4[tx_type].rows(input, outptr, bd); in vp9_highbd_iht4x4_16_add_c()
225 input += 4; in vp9_highbd_iht4x4_16_add_c()
247 void vp9_highbd_iht8x8_64_add_c(const tran_low_t *input, uint16_t *dest, in vp9_highbd_iht8x8_64_add_c() argument
257 ht.rows(input, outptr, bd); in vp9_highbd_iht8x8_64_add_c()
258 input += 8; in vp9_highbd_iht8x8_64_add_c()
280 void vp9_highbd_iht16x16_256_add_c(const tran_low_t *input, uint16_t *dest, in vp9_highbd_iht16x16_256_add_c() argument
290 ht.rows(input, outptr, bd); in vp9_highbd_iht16x16_256_add_c()
291 input += 16; 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()
340 void vp9_highbd_idct16x16_add(const tran_low_t *input, uint16_t *dest, 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()
356 void vp9_highbd_idct32x32_add(const tran_low_t *input, uint16_t *dest, 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()
371 void vp9_highbd_iht4x4_add(TX_TYPE tx_type, const tran_low_t *input, 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()
379 void vp9_highbd_iht8x8_add(TX_TYPE tx_type, const tran_low_t *input, 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()
388 void vp9_highbd_iht16x16_add(TX_TYPE tx_type, const tran_low_t *input, 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()