Lines Matching refs:argb_dst
76 uint32_t* argb_dst) { in NearLossless() argument
85 for (y = 0; y < ysize; ++y, argb_src += stride, argb_dst += xsize) { in NearLossless()
87 memcpy(argb_dst, argb_src, xsize * sizeof(argb_src[0])); in NearLossless()
90 argb_dst[0] = argb_src[0]; in NearLossless()
91 argb_dst[xsize - 1] = argb_src[xsize - 1]; in NearLossless()
94 argb_dst[x] = curr_row[x]; in NearLossless()
96 argb_dst[x] = ClosestDiscretizedArgb(curr_row[x], limit_bits); in NearLossless()
111 uint32_t* const argb_dst) { in VP8ApplyNearLossless() argument
119 assert(argb_dst != NULL); in VP8ApplyNearLossless()
130 memcpy(argb_dst + i * xsize, picture->argb + i * picture->argb_stride, in VP8ApplyNearLossless()
131 xsize * sizeof(*argb_dst)); in VP8ApplyNearLossless()
138 argb_dst); in VP8ApplyNearLossless()
140 NearLossless(xsize, ysize, argb_dst, xsize, i, copy_buffer, argb_dst); in VP8ApplyNearLossless()