• Home
  • Raw
  • Download

Lines Matching refs:dst_stride

23                            uint8_t *dst, ptrdiff_t dst_stride,  in convolve_horiz()  argument
40 dst += dst_stride; in convolve_horiz()
45 uint8_t *dst, ptrdiff_t dst_stride, in convolve_avg_horiz() argument
63 dst += dst_stride; in convolve_avg_horiz()
68 uint8_t *dst, ptrdiff_t dst_stride, in convolve_vert() argument
82 dst[y * dst_stride] = clip_pixel(ROUND_POWER_OF_TWO(sum, FILTER_BITS)); in convolve_vert()
91 uint8_t *dst, ptrdiff_t dst_stride, in convolve_avg_vert() argument
105 dst[y * dst_stride] = ROUND_POWER_OF_TWO(dst[y * dst_stride] + in convolve_avg_vert()
115 uint8_t *dst, ptrdiff_t dst_stride, in convolve() argument
144 convolve_vert(temp + 64 * (SUBPEL_TAPS / 2 - 1), 64, dst, dst_stride, in convolve()
159 uint8_t *dst, ptrdiff_t dst_stride, in vpx_convolve8_horiz_c() argument
169 convolve_horiz(src, src_stride, dst, dst_stride, filters_x, in vpx_convolve8_horiz_c()
174 uint8_t *dst, ptrdiff_t dst_stride, in vpx_convolve8_avg_horiz_c() argument
184 convolve_avg_horiz(src, src_stride, dst, dst_stride, filters_x, in vpx_convolve8_avg_horiz_c()
189 uint8_t *dst, ptrdiff_t dst_stride, in vpx_convolve8_vert_c() argument
199 convolve_vert(src, src_stride, dst, dst_stride, filters_y, in vpx_convolve8_vert_c()
204 uint8_t *dst, ptrdiff_t dst_stride, in vpx_convolve8_avg_vert_c() argument
214 convolve_avg_vert(src, src_stride, dst, dst_stride, filters_y, in vpx_convolve8_avg_vert_c()
219 uint8_t *dst, ptrdiff_t dst_stride, in vpx_convolve8_c() argument
229 convolve(src, src_stride, dst, dst_stride, in vpx_convolve8_c()
235 uint8_t *dst, ptrdiff_t dst_stride, in vpx_convolve8_avg_c() argument
246 vpx_convolve_avg_c(temp, 64, dst, dst_stride, NULL, 0, NULL, 0, w, h); in vpx_convolve8_avg_c()
250 uint8_t *dst, ptrdiff_t dst_stride, in vpx_convolve_copy_c() argument
262 dst += dst_stride; in vpx_convolve_copy_c()
267 uint8_t *dst, ptrdiff_t dst_stride, in vpx_convolve_avg_c() argument
281 dst += dst_stride; in vpx_convolve_avg_c()
286 uint8_t *dst, ptrdiff_t dst_stride, in vpx_scaled_horiz_c() argument
290 vpx_convolve8_horiz_c(src, src_stride, dst, dst_stride, filter_x, x_step_q4, in vpx_scaled_horiz_c()
295 uint8_t *dst, ptrdiff_t dst_stride, in vpx_scaled_vert_c() argument
299 vpx_convolve8_vert_c(src, src_stride, dst, dst_stride, filter_x, x_step_q4, in vpx_scaled_vert_c()
304 uint8_t *dst, ptrdiff_t dst_stride, in vpx_scaled_2d_c() argument
308 vpx_convolve8_c(src, src_stride, dst, dst_stride, filter_x, x_step_q4, in vpx_scaled_2d_c()
313 uint8_t *dst, ptrdiff_t dst_stride, in vpx_scaled_avg_horiz_c() argument
317 vpx_convolve8_avg_horiz_c(src, src_stride, dst, dst_stride, filter_x, in vpx_scaled_avg_horiz_c()
322 uint8_t *dst, ptrdiff_t dst_stride, in vpx_scaled_avg_vert_c() argument
326 vpx_convolve8_avg_vert_c(src, src_stride, dst, dst_stride, filter_x, in vpx_scaled_avg_vert_c()
331 uint8_t *dst, ptrdiff_t dst_stride, in vpx_scaled_avg_2d_c() argument
335 vpx_convolve8_avg_c(src, src_stride, dst, dst_stride, filter_x, x_step_q4, in vpx_scaled_avg_2d_c()
341 uint8_t *dst8, ptrdiff_t dst_stride, in highbd_convolve_horiz() argument
361 dst += dst_stride; in highbd_convolve_horiz()
366 uint8_t *dst8, ptrdiff_t dst_stride, in highbd_convolve_avg_horiz() argument
387 dst += dst_stride; in highbd_convolve_avg_horiz()
392 uint8_t *dst8, ptrdiff_t dst_stride, in highbd_convolve_vert() argument
408 dst[y * dst_stride] = clip_pixel_highbd( in highbd_convolve_vert()
418 uint8_t *dst8, ptrdiff_t dst_stride, in highbd_convolve_avg_vert() argument
434 dst[y * dst_stride] = ROUND_POWER_OF_TWO(dst[y * dst_stride] + in highbd_convolve_avg_vert()
444 uint8_t *dst, ptrdiff_t dst_stride, in highbd_convolve() argument
476 64, dst, dst_stride, y_filters, y0_q4, y_step_q4, in highbd_convolve()
482 uint8_t *dst, ptrdiff_t dst_stride, in vpx_highbd_convolve8_horiz_c() argument
491 highbd_convolve_horiz(src, src_stride, dst, dst_stride, filters_x, in vpx_highbd_convolve8_horiz_c()
496 uint8_t *dst, ptrdiff_t dst_stride, in vpx_highbd_convolve8_avg_horiz_c() argument
505 highbd_convolve_avg_horiz(src, src_stride, dst, dst_stride, filters_x, in vpx_highbd_convolve8_avg_horiz_c()
510 uint8_t *dst, ptrdiff_t dst_stride, in vpx_highbd_convolve8_vert_c() argument
519 highbd_convolve_vert(src, src_stride, dst, dst_stride, filters_y, in vpx_highbd_convolve8_vert_c()
524 uint8_t *dst, ptrdiff_t dst_stride, in vpx_highbd_convolve8_avg_vert_c() argument
533 highbd_convolve_avg_vert(src, src_stride, dst, dst_stride, filters_y, in vpx_highbd_convolve8_avg_vert_c()
538 uint8_t *dst, ptrdiff_t dst_stride, in vpx_highbd_convolve8_c() argument
548 highbd_convolve(src, src_stride, dst, dst_stride, in vpx_highbd_convolve8_c()
554 uint8_t *dst, ptrdiff_t dst_stride, in vpx_highbd_convolve8_avg_c() argument
565 vpx_highbd_convolve_avg_c(CONVERT_TO_BYTEPTR(temp), 64, dst, dst_stride, in vpx_highbd_convolve8_avg_c()
570 uint8_t *dst8, ptrdiff_t dst_stride, in vpx_highbd_convolve_copy_c() argument
586 dst += dst_stride; in vpx_highbd_convolve_copy_c()
591 uint8_t *dst8, ptrdiff_t dst_stride, in vpx_highbd_convolve_avg_c() argument
609 dst += dst_stride; in vpx_highbd_convolve_avg_c()