Lines Matching defs:hdecod
8679 static void hufClearDecTable(HufDec *hdecod) // io: (allocated by caller)
8683 hdecod[i].len = 0;
8684 hdecod[i].lit = 0;
8685 hdecod[i].p = NULL;
8687 // memset(hdecod, 0, sizeof(HufDec) * HUF_DECSIZE);
8701 HufDec *hdecod) // o: (allocated by caller)
8706 // Assumes that hufClearDecTable(hdecod) has already been called.
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
8789 if (hdecod[i].p) {
8790 delete[] hdecod[i].p;
8791 hdecod[i].p = 0;
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];