Lines Matching defs:put
118 unsigned char *put; // next input buffer location to process
132 strm.next_in = put = dat;
170 // just consumed. It is therefore assured that put < strm.next_in.
183 put = strm.next_in;
194 // put..strm.next_in-1 is the compressed data that has been
198 // available, i.e., put < strm.next_in. If prev is -1, then
201 // buffer, possibly combined with the bits in *put, contain
238 buf += (unsigned long)*put++ << num;
252 if (put == strm.next_in)
256 buf += (unsigned long)*put++ << num;
286 if (put == strm.next_in)
310 if (put < end) {
315 buf += (unsigned)(*put++) << num;
318 } while (put < end);
321 fwrite(put, 1, end - put, out);
322 put = end;
329 put++) << num;
388 part = (part >> 8) + ((unsigned long)(*put++) << 24);
411 } while (put < strm.next_in);