Lines Matching refs:u_dst
68 uint8_t* const u_dst = dec->cache_u_ + ctx->id_ * 8 * uv_bps + mb_x * 8; in DoFilter() local
74 VP8HFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh); in DoFilter()
78 VP8HFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh); in DoFilter()
82 VP8VFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh); in DoFilter()
86 VP8VFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh); in DoFilter()
557 uint8_t* const u_dst = dec->yuv_b_ + U_OFF; in VP8ReconstructBlock() local
567 Copy32b(&u_dst[j * BPS - 4], &u_dst[j * BPS + 4]); in VP8ReconstructBlock()
575 u_dst[j * BPS - 1] = 129; in VP8ReconstructBlock()
580 y_dst[-1 - BPS] = u_dst[-1 - BPS] = v_dst[-1 - BPS] = 129; in VP8ReconstructBlock()
593 memcpy(u_dst - BPS, top_u, 8); in VP8ReconstructBlock()
599 memset(u_dst - BPS - 1, 127, 8 + 1); in VP8ReconstructBlock()
645 VP8PredChroma8[pred_func](u_dst); in VP8ReconstructBlock()
651 VP8TransformUV(u_coeffs, u_dst); in VP8ReconstructBlock()
653 VP8TransformDCUV(u_coeffs, u_dst); in VP8ReconstructBlock()
668 memcpy(top_u, u_dst + 7 * BPS, 8); in VP8ReconstructBlock()
684 memcpy(u_out + j * dec->cache_uv_stride_, u_dst + j * BPS, 8); in VP8ReconstructBlock()