Home | History | Annotate | Download | only in pending

Lines Matching defs:blen

188     int click = bb->bitpos >> 3, blow, blen;
195 blen = 8-blow;
196 if (blen > bits) blen = bits;
197 result |= ((bb->buf[click] >> blow) & ((1<<blen)-1)) << offset;
198 offset += blen;
199 bits -= blen;
200 bb->bitpos += blen;
218 int click = bb->bitpos >> 3, blow, blen;
226 blen = 8-blow;
227 if (blen > len) blen = len;
229 bb->bitpos += blen;
230 data >>= blen;
231 len -= blen;