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

Lines Matching defs:last

46  * - Unroll last copy for window match in inflate_fast()
114 state->last = 0;
310 Update the window with the last wsize (normally 32K) bytes written before
318 advantage, since only the last 32K of output is copied to the sliding window
538 When there is a window, goto inf_leave will update the window with the last
568 code last; /* parent table entry */
776 if (state->last) {
782 state->last = BITS(1);
787 state->last ? " (last)" : ""));
793 state->last ? " (last)" : ""));
798 state->last ? " (last)" : ""));
963 last = this;
965 this = state->lencode[last.val +
966 (BITS(last.bits + last.op) >> last.bits)];
967 if ((unsigned)(last.bits + this.bits) <= bits) break;
970 DROPBITS(last.bits);
1008 last = this;
1010 this = state->distcode[last.val +
1011 (BITS(last.bits + last.op) >> last.bits)];
1012 if ((unsigned)(last.bits + this.bits) <= bits) break;
1015 DROPBITS(last.bits);
1148 strm->data_type = state->bits + (state->last ? 64 : 0) +
1233 return value is how many bytes were read including the last byte of the