Home
last modified time | relevance | path

Searched refs:pull_bits (Results 1 – 1 of 1) sorted by relevance

/OK3568_Linux_fs/u-boot/fs/jffs2/
H A Dmini_inflate.c68 inline unsigned long pull_bits(struct bitstream *stream, in pull_bits() function
115 pull_bits(stream, 16); /* throw away the inverse of the size */ in decompress_none()
159 length = pull_bits(stream, (symbol - 261) >> 2); in decompress_huffman()
170 dist = pull_bits(stream, (symbol - 2) >> 1); in decompress_huffman()
230 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic()
231 int hdist = pull_bits(stream, 5) + 1; in decompress_dynamic()
232 int hclen = pull_bits(stream, 4) + 4; in decompress_dynamic()
244 length = pull_bits(stream, 3); in decompress_dynamic()
265 length = 3 + pull_bits(stream, 2); in decompress_dynamic()
277 curr_code += 3 + pull_bits(stream, 3); in decompress_dynamic()
[all …]