Lines Matching refs:e
139 uch e; /* number of extra bits or operation */ member
326 const ush *e, /* list of extra bits for non-simple codes */ in huft_build() argument
507 r.e = (uch)(16 + j); /* bits in this table */ in huft_build()
519 r.e = 99; /* out of values--invalid code */ in huft_build()
522 r.e = (uch)(*p < 256 ? 16 : 15); /* 256 is end-of-block code */ in huft_build()
528 r.e = (uch)e[*p - s]; /* non-simple--look up in lists */ in huft_build()
597 register unsigned e; /* table entry flag/number of extra bits */ in inflate_codes() local
617 if ((e = (t = tl + ((unsigned)b & ml))->e) > 16) in inflate_codes()
619 if (e == 99) in inflate_codes()
622 e -= 16; in inflate_codes()
623 NEEDBITS(e) in inflate_codes()
624 } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16); in inflate_codes()
626 if (e == 16) /* then it's a literal */ in inflate_codes()
639 if (e == 15) in inflate_codes()
643 NEEDBITS(e) in inflate_codes()
644 n = t->v.n + ((unsigned)b & mask_bits[e]); in inflate_codes()
645 DUMPBITS(e); in inflate_codes()
649 if ((e = (t = td + ((unsigned)b & md))->e) > 16) in inflate_codes()
651 if (e == 99) in inflate_codes()
654 e -= 16; in inflate_codes()
655 NEEDBITS(e) in inflate_codes()
656 } while ((e = (t = t->v.t + ((unsigned)b & mask_bits[e]))->e) > 16); in inflate_codes()
658 NEEDBITS(e) in inflate_codes()
659 d = w - t->v.n - ((unsigned)b & mask_bits[e]); in inflate_codes()
660 DUMPBITS(e) in inflate_codes()
665 n -= (e = (e = WSIZE - ((d &= WSIZE-1) > w ? d : w)) > n ? n : e); in inflate_codes()
667 if (w - d >= e) /* (this test assumes unsigned comparison) */ in inflate_codes()
669 memcpy(slide + w, slide + d, e); in inflate_codes()
670 w += e; in inflate_codes()
671 d += e; in inflate_codes()
678 } while (--e); in inflate_codes()
1034 int *e /* last block flag */ in inflate_block() argument
1051 *e = (int)b & 1; in inflate_block()
1087 int e; /* last block flag */ in inflate() local
1104 r = inflate_block(&e); in inflate()
1109 } while (!e); in inflate()
1151 unsigned long e; /* polynomial exclusive-or pattern */ in makecrc() local
1159 e = 0; in makecrc()
1161 e |= 1L << (31 - p[i]); in makecrc()
1170 c = c & 1 ? (c >> 1) ^ e : c >> 1; in makecrc()
1172 c ^= e; in makecrc()