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