Home
last modified time | relevance | path

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

/external/u-boot/fs/jffs2/
Dmini_inflate.c66 static inline unsigned long pull_bits(struct bitstream *stream, in pull_bits() function
113 pull_bits(stream, 16); /* throw away the inverse of the size */ in decompress_none()
157 length = pull_bits(stream, (symbol - 261) >> 2); in decompress_huffman()
168 dist = pull_bits(stream, (symbol - 2) >> 1); in decompress_huffman()
228 int hlit = pull_bits(stream, 5) + 257; in decompress_dynamic()
229 int hdist = pull_bits(stream, 5) + 1; in decompress_dynamic()
230 int hclen = pull_bits(stream, 4) + 4; in decompress_dynamic()
242 length = pull_bits(stream, 3); in decompress_dynamic()
263 length = 3 + pull_bits(stream, 2); in decompress_dynamic()
275 curr_code += 3 + pull_bits(stream, 3); in decompress_dynamic()
[all …]