Searched refs:HUF_DECBITS (Results 1 – 1 of 1) sorted by relevance
65 const int HUF_DECBITS = 14; // decoding bit size (>= 8) variable68 const int HUF_DECSIZE = 1 << HUF_DECBITS; // decoding table size631 if (l > HUF_DECBITS) in hufBuildDecTable()637 HufDec *pl = hdecod + (c >> (l - HUF_DECBITS)); in hufBuildDecTable()674 HufDec *pl = hdecod + (c << (HUF_DECBITS - l)); in hufBuildDecTable()676 for (Int64 i = 1 << (HUF_DECBITS - l); i > 0; i--, pl++) in hufBuildDecTable()878 while (lc >= HUF_DECBITS) in hufDecode()880 const HufDec pl = hdecod[(c >> (lc-HUF_DECBITS)) & HUF_DECMASK]; in hufDecode()941 const HufDec pl = hdecod[(c << (HUF_DECBITS - lc)) & HUF_DECMASK]; in hufDecode()