Lines Matching full:here

600     code here;                  /* current decoding table entry */  in inflate()  local
942 here = state->lencode[BITS(state->lenbits)]; in inflate()
943 if ((unsigned)(here.bits) <= bits) break; in inflate()
946 if (here.val < 16) { in inflate()
947 DROPBITS(here.bits); in inflate()
948 state->lens[state->have++] = here.val; in inflate()
951 if (here.val == 16) { in inflate()
952 NEEDBITS(here.bits + 2); in inflate()
953 DROPBITS(here.bits); in inflate()
963 else if (here.val == 17) { in inflate()
964 NEEDBITS(here.bits + 3); in inflate()
965 DROPBITS(here.bits); in inflate()
971 NEEDBITS(here.bits + 7); in inflate()
972 DROPBITS(here.bits); in inflate()
998 values here (9 and 6) without reading the comments in inftrees.h in inflate()
1037 here = state->lencode[BITS(state->lenbits)]; in inflate()
1038 if ((unsigned)(here.bits) <= bits) break; in inflate()
1041 if (here.op && (here.op & 0xf0) == 0) { in inflate()
1042 last = here; in inflate()
1044 here = state->lencode[last.val + in inflate()
1046 if ((unsigned)(last.bits + here.bits) <= bits) break; in inflate()
1052 DROPBITS(here.bits); in inflate()
1053 state->back += here.bits; in inflate()
1054 state->length = (unsigned)here.val; in inflate()
1055 if ((int)(here.op) == 0) { in inflate()
1056 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? in inflate()
1058 "inflate: literal 0x%02x\n", here.val)); in inflate()
1062 if (here.op & 32) { in inflate()
1068 if (here.op & 64) { in inflate()
1073 state->extra = (unsigned)(here.op) & 15; in inflate()
1089 here = state->distcode[BITS(state->distbits)]; in inflate()
1090 if ((unsigned)(here.bits) <= bits) break; in inflate()
1093 if ((here.op & 0xf0) == 0) { in inflate()
1094 last = here; in inflate()
1096 here = state->distcode[last.val + in inflate()
1098 if ((unsigned)(last.bits + here.bits) <= bits) break; in inflate()
1104 DROPBITS(here.bits); in inflate()
1105 state->back += here.bits; in inflate()
1106 if (here.op & 64) { in inflate()
1111 state->offset = (unsigned)here.val; in inflate()
1112 state->extra = (unsigned)(here.op) & 15; in inflate()