Home | History | Annotate | Download | only in zlib

Lines Matching defs:last

46  * - Unroll last copy for window match in inflate_fast()
116 state->last = 0;
366 Update the window with the last wsize (normally 32K) bytes written before
374 advantage, since only the last 32K of output is copied to the sliding window
589 When there is a window, goto inf_leave will update the window with the last
619 code last; /* parent table entry */
829 if (state->last) {
835 state->last = BITS(1);
840 state->last ? " (last)" : ""));
846 state->last ? " (last)" : ""));
855 state->last ? " (last)" : ""));
1037 last = here;
1039 here = state->lencode[last.val +
1040 (BITS(last.bits + last.op) >> last.bits)];
1041 if ((unsigned)(last.bits + here.bits) <= bits) break;
1044 DROPBITS(last.bits);
1045 state->back += last.bits;
1087 last = here;
1089 here = state->distcode[last.val +
1090 (BITS(last.bits + last.op) >> last.bits)];
1091 if ((unsigned)(last.bits + here.bits) <= bits) break;
1094 DROPBITS(last.bits);
1095 state->back += last.bits;
1246 strm->data_type = state->bits + (state->last ? 64 : 0) +
1348 return value is how many bytes were read including the last byte of the