Lines Matching defs:dst
155 static ptrdiff_t lzss_uncompress(MidiVidContext *s, GetByteContext *gb, uint8_t *dst, unsigned int size)
157 uint8_t *dst_start = dst;
158 uint8_t *dst_end = dst + size;
170 if (dst + length > dst_end ||
171 dst - offset < dst_start)
175 dst[j] = dst[j - offset];
178 dst += length;
180 if (dst >= dst_end)
182 *dst++ = bytestream2_get_byte(gb);
188 return dst - dst_start;