Lines Matching refs:cur_uv
343 const fixed_t* cur_uv, in InterpolateTwoRows() argument
353 out1[0] = Filter2(cur_uv[0], prev_uv[0], best_y[0]); in InterpolateTwoRows()
354 out2[0] = Filter2(cur_uv[0], next_uv[0], best_y[w]); in InterpolateTwoRows()
356 WebPSharpYUVFilterRow(cur_uv, prev_uv, len, best_y + 0 + 1, out1 + 1); in InterpolateTwoRows()
357 WebPSharpYUVFilterRow(cur_uv, next_uv, len, best_y + w + 1, out2 + 1); in InterpolateTwoRows()
361 out1[w - 1] = Filter2(cur_uv[uv_w - 1], prev_uv[uv_w - 1], in InterpolateTwoRows()
363 out2[w - 1] = Filter2(cur_uv[uv_w - 1], next_uv[uv_w - 1], in InterpolateTwoRows()
369 cur_uv += uv_w; in InterpolateTwoRows()
507 const fixed_t* cur_uv = best_uv_base; in PreprocessARGB() local
519 const fixed_t* const next_uv = cur_uv + ((j < h - 2) ? 3 * uv_w : 0); in PreprocessARGB()
520 InterpolateTwoRows(best_y, prev_uv, cur_uv, next_uv, w, src1, src2); in PreprocessARGB()
521 prev_uv = cur_uv; in PreprocessARGB()
522 cur_uv = next_uv; in PreprocessARGB()