Lines Matching refs:src
85 uint8_t *src = c->decomp_buf;
99 c->pal[i] ^= *src++;
102 mvec = (int8_t*)src;
103 src += ((c->bx * c->by * 2 + 3) & ~3);
144 out[i] ^= *src++;
152 if (src - c->decomp_buf != c->decomp_len)
154 src-c->decomp_buf, c->decomp_len);
164 uint8_t *src = c->decomp_buf;
176 mvec = (int8_t*)src;
177 src += ((c->bx * c->by * 2 + 3) & ~3);
218 out[i] ^= *((uint16_t*)src);
219 src += 2;
228 if (src - c->decomp_buf != c->decomp_len)
230 src-c->decomp_buf, c->decomp_len);
241 uint8_t *src = c->decomp_buf;
255 mvec = (int8_t*)src;
256 src += ((c->bx * c->by * 2 + 3) & ~3);
302 out[i * 3 + 0] ^= *src++;
303 out[i * 3 + 1] ^= *src++;
304 out[i * 3 + 2] ^= *src++;
313 if (src - c->decomp_buf != c->decomp_len)
315 src-c->decomp_buf, c->decomp_len);
326 uint8_t *src = c->decomp_buf;
338 mvec = (int8_t*)src;
339 src += ((c->bx * c->by * 2 + 3) & ~3);
380 out[i] ^= *((uint32_t *) src);
381 src += 4;
390 if (src - c->decomp_buf != c->decomp_len)
392 src-c->decomp_buf, c->decomp_len);
401 uint8_t *src = c->decomp_buf;
405 memcpy(c->pal, src, 768);
406 src += 768;
409 memcpy(c->cur, src, c->width * c->height * (c->bpp / 8));
577 uint8_t *out, *src;
581 src = c->cur;
592 av_image_copy_plane(out, frame->linesize[0], src, c->stride,