Home
last modified time | relevance | path

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

/external/toybox/lib/
Ddeflate.c83 static unsigned bitbuf_get(struct bitbuf *bb, int bits) in bitbuf_get() function
210 final = bitbuf_get(bb, 1); in inflate()
211 type = bitbuf_get(bb, 2); in inflate()
221 len = bitbuf_get(bb, 16); in inflate()
222 nlen = bitbuf_get(bb, 16); in inflate()
250 litlen = bitbuf_get(bb, 5)+257; // max 288 in inflate()
251 distlen = bitbuf_get(bb, 5)+1; // max 32 in inflate()
252 hufflen = bitbuf_get(bb, 4)+4; // max 19 in inflate()
259 for (i=0; i<hufflen; i++) bits[hufflen_order[i]] = bitbuf_get(bb, 3); in inflate()
272 len = bitbuf_get(bb, sym-14+len+(len>>1)) + 3 + (len<<2); in inflate()
[all …]