Lines Matching refs:pl

8729       HufDec *pl = hdecod + (c >> (l - HUF_DECBITS));  in hufBuildDecTable()  local
8731 if (pl->len) { in hufBuildDecTable()
8741 pl->lit++; in hufBuildDecTable()
8743 if (pl->p) { in hufBuildDecTable()
8744 int *p = pl->p; in hufBuildDecTable()
8745 pl->p = new int[pl->lit]; in hufBuildDecTable()
8747 for (int i = 0; i < pl->lit - 1; ++i) pl->p[i] = p[i]; in hufBuildDecTable()
8751 pl->p = new int[1]; in hufBuildDecTable()
8754 pl->p[pl->lit - 1] = im; in hufBuildDecTable()
8760 HufDec *pl = hdecod + (c << (HUF_DECBITS - l)); in hufBuildDecTable() local
8762 for (long long i = 1ULL << (HUF_DECBITS - l); i > 0; i--, pl++) { in hufBuildDecTable()
8763 if (pl->len || pl->p) { in hufBuildDecTable()
8773 pl->len = l; in hufBuildDecTable()
8774 pl->lit = im; in hufBuildDecTable()
8973 const HufDec pl = hdecod[(c >> (lc - HUF_DECBITS)) & HUF_DECMASK]; in hufDecode() local
8975 if (pl.len) { in hufDecode()
8980 lc -= pl.len; in hufDecode()
8988 if (!getCode(pl.lit, rlc, c, lc, in, ie, out, outb, oe)) { in hufDecode()
8992 if (!pl.p) { in hufDecode()
9003 for (j = 0; j < pl.lit; j++) { in hufDecode()
9004 int l = hufLength(hcode[pl.p[j]]); in hufDecode()
9010 if (hufCode(hcode[pl.p[j]]) == in hufDecode()
9017 if (!getCode(pl.p[j], rlc, c, lc, in, ie, out, outb, oe)) { in hufDecode()
9025 if (j == pl.lit) { in hufDecode()
9042 const HufDec pl = hdecod[(c << (HUF_DECBITS - lc)) & HUF_DECMASK]; in hufDecode() local
9044 if (pl.len) { in hufDecode()
9045 lc -= pl.len; in hufDecode()
9046 if (!getCode(pl.lit, rlc, c, lc, in, ie, out, outb, oe)) { in hufDecode()