Lines Matching refs:write_ptr
645 u8 *const write_ptr = IO_get_write_ptr(out, block_len); in decompress_data() local
648 memcpy(write_ptr, read_ptr, block_len); in decompress_data()
658 u8 *const write_ptr = IO_get_write_ptr(out, block_len); in decompress_data() local
661 memset(write_ptr, read_ptr[0], block_len); in decompress_data()
1307 u8 *const write_ptr = IO_get_write_ptr(out, literal_length); in copy_literals() local
1311 memcpy(write_ptr, read_ptr, literal_length); in copy_literals()
1367 u8 *write_ptr = IO_get_write_ptr(out, match_length); in execute_match_copy() local
1384 memcpy(write_ptr, ctx->dict_content + dict_offset, dict_copy); in execute_match_copy()
1385 write_ptr += dict_copy; in execute_match_copy()
1397 *write_ptr = *(write_ptr - offset); in execute_match_copy()
1398 write_ptr++; in execute_match_copy()