Lines Matching refs:e

140   uch e;                /* number of extra bits or operation */  member
327 const ush *e, /* list of extra bits for non-simple codes */ in huft_build() argument
508 r.e = (uch)(16 + j); /* bits in this table */ in huft_build()
520 r.e = 99; /* out of values--invalid code */ in huft_build()
523 r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ in huft_build()
529 r.e = (uch)e[*p - s]; /* non-simple--look up in lists */ in huft_build()
598 register unsigned e; /* table entry flag/number of extra bits */ in inflate_codes() local
618 if ((e = (t = tl + ((unsigned)b & ml))->e) > 16) in inflate_codes()
620 if (e == 99) in inflate_codes()
623 e -= 16; in inflate_codes()
624 NEEDBITS(e) in inflate_codes()
625 } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16); in inflate_codes()
627 if (e == 16) /* then it's a literal */ in inflate_codes()
640 if (e == 15) in inflate_codes()
644 NEEDBITS(e) in inflate_codes()
645 n = t->v.n + ((unsigned)b & mask_bits[e]); in inflate_codes()
646 DUMPBITS(e); in inflate_codes()
650 if ((e = (t = td + ((unsigned)b & md))->e) > 16) in inflate_codes()
652 if (e == 99) in inflate_codes()
655 e -= 16; in inflate_codes()
656 NEEDBITS(e) in inflate_codes()
657 } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16); in inflate_codes()
659 NEEDBITS(e) in inflate_codes()
660 d = w - t->v.n - ((unsigned)b & mask_bits[e]); in inflate_codes()
661 DUMPBITS(e) in inflate_codes()
666 n -= (e = (e = WSIZE - ((d &= WSIZE-1) > w ? d : w)) > n ? n : e); in inflate_codes()
668 if (w - d >= e) /* (this test assumes unsigned comparison) */ in inflate_codes()
670 memcpy(slide + w, slide + d, e); in inflate_codes()
671 w += e; in inflate_codes()
672 d += e; in inflate_codes()
679 } while (--e); in inflate_codes()
1035 int *e /* last block flag */ in inflate_block() argument
1052 *e = (int)b & 1; in inflate_block()
1088 int e; /* last block flag */ in inflate() local
1105 r = inflate_block(&e); in inflate()
1110 } while (!e); in inflate()
1152 unsigned long e; /* polynomial exclusive-or pattern */ in makecrc() local
1160 e = 0; in makecrc()
1162 e |= 1L << (31 - p[i]); in makecrc()
1171 c = c & 1 ? (c >> 1) ^ e : c >> 1; in makecrc()
1173 c ^= e; in makecrc()