Lines Matching defs:src
202 uint8_t *src, ptrdiff_t stride, int x, int y,
213 memset(neighbours, src[-1], 4);
215 neighbours[TOP] = src[-stride];
219 neighbours[TOP_LEFT] = src[-stride - 1];
220 neighbours[ LEFT] = src[-1];
223 neighbours[TOP_RIGHT] = src[-stride + 1];
229 if (x >= 2 && src[-2] == neighbours[LEFT])
231 if (y >= 2 && src[-2 * stride] == neighbours[TOP])
352 uint8_t *src;
358 src = c->last_pal_pic + x + y * c->pal_stride;
361 src = c->pal_pic + x + y * c->pal_stride;
365 memmove(dst, src, width);
368 src += c->pal_stride;