Lines Matching defs:HufDec
8284 struct HufDec { // short code long code
8679 static void hufClearDecTable(HufDec *hdecod) // io: (allocated by caller)
8687 // memset(hdecod, 0, sizeof(HufDec) * HUF_DECSIZE);
8701 HufDec *hdecod) // o: (allocated by caller)
8729 HufDec *pl = hdecod + (c >> (l - HUF_DECBITS));
8760 HufDec *pl = hdecod + (c << (HUF_DECBITS - l));
8786 static void hufFreeDecTable(HufDec *hdecod) // io: Decoding table
8948 const HufDec *hdecod, // i : decoding table
8973 const HufDec pl = hdecod[(c >> (lc - HUF_DECBITS)) & HUF_DECMASK];
9042 const HufDec pl = hdecod[(c << (HUF_DECBITS - lc)) & HUF_DECMASK];
9151 std::vector<HufDec> hdec(HUF_DECSIZE);