Searched refs:dst_cur (Results 1 – 1 of 1) sorted by relevance
99 unsigned char *dst_cur = dst; in cin_decode_huffman() local111 *dst_cur++ = b | (huff_code >> 4); in cin_decode_huffman()113 *dst_cur++ = huff_code_table[huff_code >> 4]; in cin_decode_huffman()114 if (dst_cur >= dst_end) in cin_decode_huffman()119 *dst_cur++ = *src++; in cin_decode_huffman()121 *dst_cur++ = huff_code_table[huff_code]; in cin_decode_huffman()122 if (dst_cur >= dst_end) in cin_decode_huffman()126 return dst_cur - dst; in cin_decode_huffman()