Lines Matching refs:op
110 unsigned op; /* code bits, operation, extra bits, or */ in inflate_fast() local
148 op = (unsigned)(this.bits); in inflate_fast()
149 hold >>= op; in inflate_fast()
150 bits -= op; in inflate_fast()
151 op = (unsigned)(this.op); in inflate_fast()
152 if (op == 0) { /* literal */ in inflate_fast()
155 else if (op & 16) { /* length base */ in inflate_fast()
157 op &= 15; /* number of extra bits */ in inflate_fast()
158 if (op) { in inflate_fast()
159 if (bits < op) { in inflate_fast()
163 len += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
164 hold >>= op; in inflate_fast()
165 bits -= op; in inflate_fast()
175 op = (unsigned)(this.bits); in inflate_fast()
176 hold >>= op; in inflate_fast()
177 bits -= op; in inflate_fast()
178 op = (unsigned)(this.op); in inflate_fast()
179 if (op & 16) { /* distance base */ in inflate_fast()
181 op &= 15; /* number of extra bits */ in inflate_fast()
182 if (bits < op) { in inflate_fast()
185 if (bits < op) { in inflate_fast()
190 dist += (unsigned)hold & ((1U << op) - 1); in inflate_fast()
198 hold >>= op; in inflate_fast()
199 bits -= op; in inflate_fast()
200 op = (unsigned)(out - beg); /* max distance in output */ in inflate_fast()
201 if (dist > op) { /* see if copy from window */ in inflate_fast()
202 op = dist - op; /* distance back in window */ in inflate_fast()
203 if (op > whave) { in inflate_fast()
210 from += wsize - op; in inflate_fast()
211 if (op < len) { /* some from window */ in inflate_fast()
212 len -= op; in inflate_fast()
215 } while (--op); in inflate_fast()
219 else if (write < op) { /* wrap around window */ in inflate_fast()
220 from += wsize + write - op; in inflate_fast()
221 op -= write; in inflate_fast()
222 if (op < len) { /* some from end of window */ in inflate_fast()
223 len -= op; in inflate_fast()
226 } while (--op); in inflate_fast()
229 op = write; in inflate_fast()
230 len -= op; in inflate_fast()
233 } while (--op); in inflate_fast()
239 from += write - op; in inflate_fast()
240 if (op < len) { /* some from window */ in inflate_fast()
241 len -= op; in inflate_fast()
244 } while (--op); in inflate_fast()
307 else if ((op & 64) == 0) { /* 2nd level distance code */ in inflate_fast()
308 this = dcode[this.val + (hold & ((1U << op) - 1))]; in inflate_fast()
317 else if ((op & 64) == 0) { /* 2nd level length code */ in inflate_fast()
318 this = lcode[this.val + (hold & ((1U << op) - 1))]; in inflate_fast()
321 else if (op & 32) { /* end-of-block */ in inflate_fast()