Lines Matching refs:y_dst
77 uint8_t* const y_dst = dec->yuv_b_ + Y_OFF; in ReconstructRow() local
83 y_dst[j * BPS - 1] = 129; in ReconstructRow()
92 y_dst[-1 - BPS] = u_dst[-1 - BPS] = v_dst[-1 - BPS] = 129; in ReconstructRow()
96 memset(y_dst - BPS - 1, 127, 16 + 4 + 1); in ReconstructRow()
109 Copy32b(&y_dst[j * BPS - 4], &y_dst[j * BPS + 12]); in ReconstructRow()
124 memcpy(y_dst - BPS, top_yuv[0].y, 16); in ReconstructRow()
131 uint32_t* const top_right = (uint32_t*)(y_dst - BPS + 16); in ReconstructRow()
145 uint8_t* const dst = y_dst + kScan[n]; in ReconstructRow()
151 VP8PredLuma16[pred_func](y_dst); in ReconstructRow()
154 DoTransform(bits, coeffs + n * 16, y_dst + kScan[n]); in ReconstructRow()
170 memcpy(top_yuv[0].y, y_dst + 15 * BPS, 16); in ReconstructRow()
183 memcpy(y_out + j * dec->cache_y_stride_, y_dst + j * BPS, 16); in ReconstructRow()
208 uint8_t* const y_dst = dec->cache_y_ + cache_id * 16 * y_bps + mb_x * 16; in DoFilter() local
217 VP8SimpleHFilter16(y_dst, y_bps, limit + 4); in DoFilter()
220 VP8SimpleHFilter16i(y_dst, y_bps, limit); in DoFilter()
223 VP8SimpleVFilter16(y_dst, y_bps, limit + 4); in DoFilter()
226 VP8SimpleVFilter16i(y_dst, y_bps, limit); in DoFilter()
234 VP8HFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh); in DoFilter()
238 VP8HFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh); in DoFilter()
242 VP8VFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh); in DoFilter()
246 VP8VFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh); in DoFilter()