Lines Matching refs:dest_index
209 if (dest_index + count > dest_size) { \
212 dest_index, count, dest_size); \
228 int dest_index = 0; in decode_format80() local
249 if (dest_index >= dest_size) { in decode_format80()
251 dest_index, dest_size); in decode_format80()
263 dest[dest_index + i] = dest[src_pos + i]; in decode_format80()
264 dest_index += count; in decode_format80()
272 memset(&dest[dest_index], color, count); in decode_format80()
273 dest_index += count; in decode_format80()
283 dest[dest_index + i] = dest[src_pos + i]; in decode_format80()
284 dest_index += count; in decode_format80()
291 bytestream2_get_buffer(&s->gb, &dest[dest_index], count); in decode_format80()
292 dest_index += count; in decode_format80()
300 CHECK_COPY(dest_index - src_pos); in decode_format80()
302 dest[dest_index + i] = dest[dest_index - src_pos + i]; in decode_format80()
303 dest_index += count; in decode_format80()
312 if (dest_index < dest_size) { in decode_format80()
314 dest_index, dest_size); in decode_format80()
315 memset(dest + dest_index, 0, dest_size - dest_index); in decode_format80()