Lines Matching refs:dest
108 static void decompress_none(struct bitstream *stream, unsigned char *dest) in decompress_none() argument
118 stream->memcpy(dest, stream->data, length); in decompress_none()
141 static void decompress_huffman(struct bitstream *stream, unsigned char *dest) in decompress_huffman() argument
151 *(dest++) = symbol; /* symbol is a literal */ in decompress_huffman()
176 *dest = dest[-dist]; in decompress_huffman()
177 dest++; in decompress_huffman()
214 static void decompress_dynamic(struct bitstream *stream, unsigned char *dest) in decompress_dynamic() argument
315 decompress_huffman(stream, dest); in decompress_dynamic()
320 static void decompress_fixed(struct bitstream *stream, unsigned char *dest) in decompress_fixed() argument
346 decompress_huffman(stream, dest); in decompress_fixed()
352 long decompress_block(unsigned char *dest, unsigned char *source, in decompress_block() argument
362 if (btype == NO_COMP) decompress_none(&stream, dest + stream.decoded); in decompress_block()
364 decompress_dynamic(&stream, dest + stream.decoded); in decompress_block()
365 else if (btype == FIXED_COMP) decompress_fixed(&stream, dest + stream.decoded); in decompress_block()
373 putLabeledWord("dest = ",dest); in decompress_block()