Lines Matching refs:ref_row
375 const uint8_t *ref_row = src - x - y * src_stride; in build_mc_border() local
378 ref_row += (h - 1) * src_stride; in build_mc_border()
380 ref_row += y * src_stride; in build_mc_border()
394 if (left) memset(dst, ref_row[0], left); in build_mc_border()
396 if (copy) memcpy(dst + left, ref_row + x + left, copy); in build_mc_border()
398 if (right) memset(dst + left + copy, ref_row[w - 1], right); in build_mc_border()
403 if (y > 0 && y < h) ref_row += src_stride; in build_mc_border()
413 const uint16_t *ref_row = src - x - y * src_stride; in high_build_mc_border() local
416 ref_row += (h - 1) * src_stride; in high_build_mc_border()
418 ref_row += y * src_stride; in high_build_mc_border()
432 if (left) vpx_memset16(dst, ref_row[0], left); in high_build_mc_border()
434 if (copy) memcpy(dst + left, ref_row + x + left, copy * sizeof(uint16_t)); in high_build_mc_border()
436 if (right) vpx_memset16(dst + left + copy, ref_row[w - 1], right); in high_build_mc_border()
441 if (y > 0 && y < h) ref_row += src_stride; in high_build_mc_border()