Lines Matching refs:here
90 code here; /* retrieved table entry */ in inflate_fast() local
127 here = lcode[hold & lmask]; in inflate_fast()
129 op = (unsigned)(here.bits); in inflate_fast()
132 op = (unsigned)(here.op); in inflate_fast()
134 Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? in inflate_fast()
136 "inflate: literal 0x%02x\n", here.val)); in inflate_fast()
137 PUP(out) = (unsigned char)(here.val); in inflate_fast()
140 len = (unsigned)(here.val); in inflate_fast()
158 here = dcode[hold & dmask]; in inflate_fast()
160 op = (unsigned)(here.bits); in inflate_fast()
163 op = (unsigned)(here.op); in inflate_fast()
165 dist = (unsigned)(here.val); in inflate_fast()
284 here = dcode[here.val + (hold & ((1U << op) - 1))]; in inflate_fast()
294 here = lcode[here.val + (hold & ((1U << op) - 1))]; in inflate_fast()