Home
last modified time | relevance | path

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

/external/toybox/lib/
Ddeflate.c78 static unsigned bitbuf_get(struct bitbuf *bb, int bits) in bitbuf_get() function
201 final = bitbuf_get(bb, 1); in inflate()
202 type = bitbuf_get(bb, 2); in inflate()
212 len = bitbuf_get(bb, 16); in inflate()
213 nlen = bitbuf_get(bb, 16); in inflate()
241 litlen = bitbuf_get(bb, 5)+257; // max 288 in inflate()
242 distlen = bitbuf_get(bb, 5)+1; // max 32 in inflate()
243 hufflen = bitbuf_get(bb, 4)+4; // max 19 in inflate()
250 for (i=0; i<hufflen; i++) bits[hufflen_order[i]] = bitbuf_get(bb, 3); in inflate()
263 len = bitbuf_get(bb, sym-14+len+(len>>1)) + 3 + (len<<2); in inflate()
[all …]