Lines Matching defs:HUF_DECBITS
8278 const int HUF_DECBITS = 14; // decoding bit size (>= 8)
8281 const int HUF_DECSIZE = 1 << HUF_DECBITS; // decoding table size
8692 // - short codes (<= HUF_DECBITS) are resolved with a single table access;
8724 if (l > HUF_DECBITS) {
8729 HufDec *pl = hdecod + (c >> (l - HUF_DECBITS));
8760 HufDec *pl = hdecod + (c << (HUF_DECBITS - l));
8762 for (long long i = 1ULL << (HUF_DECBITS - l); i > 0; i--, pl++) {
8972 while (lc >= HUF_DECBITS) {
8973 const HufDec pl = hdecod[(c >> (lc - HUF_DECBITS)) & HUF_DECMASK];
9042 const HufDec pl = hdecod[(c << (HUF_DECBITS - lc)) & HUF_DECMASK];