Home | History | Annotate | Download | only in zlib-1.2.3

Lines Matching defs:this

38    inflate execution time is spent in this routine.
58 and 13 bits for the distance extra. This totals 48 bits, or six bytes.
90 code this; /* retrieved table entry */
127 this = lcode[hold & lmask];
129 op = (unsigned)(this.bits);
132 op = (unsigned)(this.op);
134 Tracevv((stderr, this.val >= 0x20 && this.val < 0x7f ?
136 "inflate: literal 0x%02x\n", this.val));
137 PUP(out) = (unsigned char)(this.val);
140 len = (unsigned)(this.val);
158 this = dcode[hold & dmask];
160 op = (unsigned)(this.bits);
163 op = (unsigned)(this.op);
165 dist = (unsigned)(this.val);
262 this = dcode[this.val + (hold & ((1U << op) - 1))];
272 this = lcode[this.val + (hold & ((1U << op) - 1))];