• Home
  • Raw
  • Download

Lines Matching full:stride

23 static inline void v_predictor(uint8_t *dst, ptrdiff_t stride, int bw, int bh,  in v_predictor()  argument
30 dst += stride; in v_predictor()
34 static inline void h_predictor(uint8_t *dst, ptrdiff_t stride, int bw, int bh, in h_predictor() argument
41 dst += stride; in h_predictor()
60 static inline void paeth_predictor(uint8_t *dst, ptrdiff_t stride, int bw, in paeth_predictor() argument
69 dst += stride; in paeth_predictor()
84 static inline void smooth_predictor(uint8_t *dst, ptrdiff_t stride, int bw, in smooth_predictor() argument
111 dst += stride; in smooth_predictor()
115 static inline void smooth_v_predictor(uint8_t *dst, ptrdiff_t stride, int bw, in smooth_v_predictor() argument
140 dst += stride; in smooth_v_predictor()
144 static inline void smooth_h_predictor(uint8_t *dst, ptrdiff_t stride, int bw, in smooth_h_predictor() argument
169 dst += stride; in smooth_h_predictor()
173 static inline void dc_128_predictor(uint8_t *dst, ptrdiff_t stride, int bw, in dc_128_predictor() argument
182 dst += stride; in dc_128_predictor()
186 static inline void dc_left_predictor(uint8_t *dst, ptrdiff_t stride, int bw, in dc_left_predictor() argument
197 dst += stride; in dc_left_predictor()
201 static inline void dc_top_predictor(uint8_t *dst, ptrdiff_t stride, int bw, in dc_top_predictor() argument
212 dst += stride; in dc_top_predictor()
216 static inline void dc_predictor(uint8_t *dst, ptrdiff_t stride, int bw, int bh, in dc_predictor() argument
232 dst += stride; in dc_predictor()
265 static inline void dc_predictor_rect(uint8_t *dst, ptrdiff_t stride, int bw, in dc_predictor_rect() argument
284 dst += stride; in dc_predictor_rect()
290 void aom_dc_predictor_4x8_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_4x8_c() argument
292 dc_predictor_rect(dst, stride, 4, 8, above, left, 2, DC_MULTIPLIER_1X2); in aom_dc_predictor_4x8_c()
295 void aom_dc_predictor_8x4_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_8x4_c() argument
297 dc_predictor_rect(dst, stride, 8, 4, above, left, 2, DC_MULTIPLIER_1X2); in aom_dc_predictor_8x4_c()
301 void aom_dc_predictor_4x16_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_4x16_c() argument
303 dc_predictor_rect(dst, stride, 4, 16, above, left, 2, DC_MULTIPLIER_1X4); in aom_dc_predictor_4x16_c()
306 void aom_dc_predictor_16x4_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_16x4_c() argument
308 dc_predictor_rect(dst, stride, 16, 4, above, left, 2, DC_MULTIPLIER_1X4); in aom_dc_predictor_16x4_c()
312 void aom_dc_predictor_8x16_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_8x16_c() argument
314 dc_predictor_rect(dst, stride, 8, 16, above, left, 3, DC_MULTIPLIER_1X2); in aom_dc_predictor_8x16_c()
317 void aom_dc_predictor_16x8_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_16x8_c() argument
319 dc_predictor_rect(dst, stride, 16, 8, above, left, 3, DC_MULTIPLIER_1X2); in aom_dc_predictor_16x8_c()
323 void aom_dc_predictor_8x32_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_8x32_c() argument
325 dc_predictor_rect(dst, stride, 8, 32, above, left, 3, DC_MULTIPLIER_1X4); in aom_dc_predictor_8x32_c()
328 void aom_dc_predictor_32x8_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_32x8_c() argument
330 dc_predictor_rect(dst, stride, 32, 8, above, left, 3, DC_MULTIPLIER_1X4); in aom_dc_predictor_32x8_c()
334 void aom_dc_predictor_16x32_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_16x32_c() argument
336 dc_predictor_rect(dst, stride, 16, 32, above, left, 4, DC_MULTIPLIER_1X2); in aom_dc_predictor_16x32_c()
339 void aom_dc_predictor_32x16_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_32x16_c() argument
341 dc_predictor_rect(dst, stride, 32, 16, above, left, 4, DC_MULTIPLIER_1X2); in aom_dc_predictor_32x16_c()
345 void aom_dc_predictor_16x64_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_16x64_c() argument
347 dc_predictor_rect(dst, stride, 16, 64, above, left, 4, DC_MULTIPLIER_1X4); in aom_dc_predictor_16x64_c()
350 void aom_dc_predictor_64x16_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_64x16_c() argument
352 dc_predictor_rect(dst, stride, 64, 16, above, left, 4, DC_MULTIPLIER_1X4); in aom_dc_predictor_64x16_c()
356 void aom_dc_predictor_32x64_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_32x64_c() argument
358 dc_predictor_rect(dst, stride, 32, 64, above, left, 5, DC_MULTIPLIER_1X2); in aom_dc_predictor_32x64_c()
361 void aom_dc_predictor_64x32_c(uint8_t *dst, ptrdiff_t stride, in aom_dc_predictor_64x32_c() argument
363 dc_predictor_rect(dst, stride, 64, 32, above, left, 5, DC_MULTIPLIER_1X2); in aom_dc_predictor_64x32_c()
371 static inline void highbd_v_predictor(uint16_t *dst, ptrdiff_t stride, int bw, in highbd_v_predictor() argument
379 dst += stride; in highbd_v_predictor()
383 static inline void highbd_h_predictor(uint16_t *dst, ptrdiff_t stride, int bw, in highbd_h_predictor() argument
391 dst += stride; in highbd_h_predictor()
395 static inline void highbd_paeth_predictor(uint16_t *dst, ptrdiff_t stride, in highbd_paeth_predictor() argument
405 dst += stride; in highbd_paeth_predictor()
409 static inline void highbd_smooth_predictor(uint16_t *dst, ptrdiff_t stride, in highbd_smooth_predictor() argument
438 dst += stride; in highbd_smooth_predictor()
442 static inline void highbd_smooth_v_predictor(uint16_t *dst, ptrdiff_t stride, in highbd_smooth_v_predictor() argument
469 dst += stride; in highbd_smooth_v_predictor()
473 static inline void highbd_smooth_h_predictor(uint16_t *dst, ptrdiff_t stride, in highbd_smooth_h_predictor() argument
500 dst += stride; in highbd_smooth_h_predictor()
504 static inline void highbd_dc_128_predictor(uint16_t *dst, ptrdiff_t stride, in highbd_dc_128_predictor() argument
514 dst += stride; in highbd_dc_128_predictor()
518 static inline void highbd_dc_left_predictor(uint16_t *dst, ptrdiff_t stride, in highbd_dc_left_predictor() argument
531 dst += stride; in highbd_dc_left_predictor()
535 static inline void highbd_dc_top_predictor(uint16_t *dst, ptrdiff_t stride, in highbd_dc_top_predictor() argument
548 dst += stride; in highbd_dc_top_predictor()
552 static inline void highbd_dc_predictor(uint16_t *dst, ptrdiff_t stride, int bw, in highbd_dc_predictor() argument
570 dst += stride; in highbd_dc_predictor()
588 static inline void highbd_dc_predictor_rect(uint16_t *dst, ptrdiff_t stride, in highbd_dc_predictor_rect() argument
609 dst += stride; in highbd_dc_predictor_rect()
615 void aom_highbd_dc_predictor_4x8_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_4x8_c() argument
618 highbd_dc_predictor_rect(dst, stride, 4, 8, above, left, bd, 2, in aom_highbd_dc_predictor_4x8_c()
622 void aom_highbd_dc_predictor_8x4_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_8x4_c() argument
625 highbd_dc_predictor_rect(dst, stride, 8, 4, above, left, bd, 2, in aom_highbd_dc_predictor_8x4_c()
630 void aom_highbd_dc_predictor_4x16_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_4x16_c() argument
633 highbd_dc_predictor_rect(dst, stride, 4, 16, above, left, bd, 2, in aom_highbd_dc_predictor_4x16_c()
637 void aom_highbd_dc_predictor_16x4_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_16x4_c() argument
640 highbd_dc_predictor_rect(dst, stride, 16, 4, above, left, bd, 2, in aom_highbd_dc_predictor_16x4_c()
645 void aom_highbd_dc_predictor_8x16_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_8x16_c() argument
648 highbd_dc_predictor_rect(dst, stride, 8, 16, above, left, bd, 3, in aom_highbd_dc_predictor_8x16_c()
652 void aom_highbd_dc_predictor_16x8_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_16x8_c() argument
655 highbd_dc_predictor_rect(dst, stride, 16, 8, above, left, bd, 3, in aom_highbd_dc_predictor_16x8_c()
660 void aom_highbd_dc_predictor_8x32_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_8x32_c() argument
663 highbd_dc_predictor_rect(dst, stride, 8, 32, above, left, bd, 3, in aom_highbd_dc_predictor_8x32_c()
667 void aom_highbd_dc_predictor_32x8_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_32x8_c() argument
670 highbd_dc_predictor_rect(dst, stride, 32, 8, above, left, bd, 3, in aom_highbd_dc_predictor_32x8_c()
675 void aom_highbd_dc_predictor_16x32_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_16x32_c() argument
678 highbd_dc_predictor_rect(dst, stride, 16, 32, above, left, bd, 4, in aom_highbd_dc_predictor_16x32_c()
682 void aom_highbd_dc_predictor_32x16_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_32x16_c() argument
685 highbd_dc_predictor_rect(dst, stride, 32, 16, above, left, bd, 4, in aom_highbd_dc_predictor_32x16_c()
690 void aom_highbd_dc_predictor_16x64_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_16x64_c() argument
693 highbd_dc_predictor_rect(dst, stride, 16, 64, above, left, bd, 4, in aom_highbd_dc_predictor_16x64_c()
697 void aom_highbd_dc_predictor_64x16_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_64x16_c() argument
700 highbd_dc_predictor_rect(dst, stride, 64, 16, above, left, bd, 4, in aom_highbd_dc_predictor_64x16_c()
705 void aom_highbd_dc_predictor_32x64_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_32x64_c() argument
708 highbd_dc_predictor_rect(dst, stride, 32, 64, above, left, bd, 5, in aom_highbd_dc_predictor_32x64_c()
712 void aom_highbd_dc_predictor_64x32_c(uint16_t *dst, ptrdiff_t stride, in aom_highbd_dc_predictor_64x32_c() argument
715 highbd_dc_predictor_rect(dst, stride, 64, 32, above, left, bd, 5, in aom_highbd_dc_predictor_64x32_c()
728 uint8_t *dst, ptrdiff_t stride, const uint8_t *above, \
730 type##_predictor(dst, stride, width, height, above, left); \
736 uint16_t *dst, ptrdiff_t stride, const uint16_t *above, \
738 highbd_##type##_predictor(dst, stride, width, height, above, left, bd); \