Lines Matching full:here
252 code here; /* current decoding table entry */ in inflateBack() local
388 here = state->lencode[BITS(state->lenbits)]; in inflateBack()
389 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
392 if (here.val < 16) { in inflateBack()
393 DROPBITS(here.bits); in inflateBack()
394 state->lens[state->have++] = here.val; in inflateBack()
397 if (here.val == 16) { in inflateBack()
398 NEEDBITS(here.bits + 2); in inflateBack()
399 DROPBITS(here.bits); in inflateBack()
409 else if (here.val == 17) { in inflateBack()
410 NEEDBITS(here.bits + 3); in inflateBack()
411 DROPBITS(here.bits); in inflateBack()
417 NEEDBITS(here.bits + 7); in inflateBack()
418 DROPBITS(here.bits); in inflateBack()
444 values here (9 and 6) without reading the comments in inftrees.h in inflateBack()
482 here = state->lencode[BITS(state->lenbits)]; in inflateBack()
483 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
486 if (here.op && (here.op & 0xf0) == 0) { in inflateBack()
487 last = here; in inflateBack()
489 here = state->lencode[last.val + in inflateBack()
491 if ((unsigned)(last.bits + here.bits) <= bits) break; in inflateBack()
496 DROPBITS(here.bits); in inflateBack()
497 state->length = (unsigned)here.val; in inflateBack()
500 if (here.op == 0) { in inflateBack()
501 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? in inflateBack()
503 "inflate: literal 0x%02x\n", here.val)); in inflateBack()
512 if (here.op & 32) { in inflateBack()
519 if (here.op & 64) { in inflateBack()
526 state->extra = (unsigned)(here.op) & 15; in inflateBack()
536 here = state->distcode[BITS(state->distbits)]; in inflateBack()
537 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
540 if ((here.op & 0xf0) == 0) { in inflateBack()
541 last = here; in inflateBack()
543 here = state->distcode[last.val + in inflateBack()
545 if ((unsigned)(last.bits + here.bits) <= bits) break; in inflateBack()
550 DROPBITS(here.bits); in inflateBack()
551 if (here.op & 64) { in inflateBack()
556 state->offset = (unsigned)here.val; in inflateBack()
559 state->extra = (unsigned)(here.op) & 15; in inflateBack()