• Home
  • Raw
  • Download

Lines Matching refs:here

265     code here;                  /* current decoding table entry */  in inflateBack()  local
401 here = state->lencode[BITS(state->lenbits)]; in inflateBack()
402 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
405 if (here.val < 16) { in inflateBack()
406 DROPBITS(here.bits); in inflateBack()
407 state->lens[state->have++] = here.val; in inflateBack()
410 if (here.val == 16) { in inflateBack()
411 NEEDBITS(here.bits + 2); in inflateBack()
412 DROPBITS(here.bits); in inflateBack()
422 else if (here.val == 17) { in inflateBack()
423 NEEDBITS(here.bits + 3); in inflateBack()
424 DROPBITS(here.bits); in inflateBack()
430 NEEDBITS(here.bits + 7); in inflateBack()
431 DROPBITS(here.bits); in inflateBack()
494 here = state->lencode[BITS(state->lenbits)]; in inflateBack()
495 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
498 if (here.op && (here.op & 0xf0) == 0) { in inflateBack()
499 last = here; in inflateBack()
501 here = state->lencode[last.val + in inflateBack()
503 if ((unsigned)(last.bits + here.bits) <= bits) break; in inflateBack()
508 DROPBITS(here.bits); in inflateBack()
509 state->length = (unsigned)here.val; in inflateBack()
512 if (here.op == 0) { in inflateBack()
513 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? in inflateBack()
515 "inflate: literal 0x%02x\n", here.val)); in inflateBack()
524 if (here.op & 32) { in inflateBack()
531 if (here.op & 64) { in inflateBack()
538 state->extra = (unsigned)(here.op) & 15; in inflateBack()
548 here = state->distcode[BITS(state->distbits)]; in inflateBack()
549 if ((unsigned)(here.bits) <= bits) break; in inflateBack()
552 if ((here.op & 0xf0) == 0) { in inflateBack()
553 last = here; in inflateBack()
555 here = state->distcode[last.val + in inflateBack()
557 if ((unsigned)(last.bits + here.bits) <= bits) break; in inflateBack()
562 DROPBITS(here.bits); in inflateBack()
563 if (here.op & 64) { in inflateBack()
568 state->offset = (unsigned)here.val; in inflateBack()
571 state->extra = (unsigned)(here.op) & 15; in inflateBack()