Lines Matching refs:left
23 // in the uncompressed output. The compressed file is left open, and can then
81 off_t in, off_t out, unsigned left,
119 if (left)
120 memcpy(next->window, window + WINSIZE - left, left);
121 if (left < WINSIZE)
122 memcpy(next->window + left, window, WINSIZE - left);
376 size_t left = len; // number of bytes left to read after offset
384 // Uncompress up to left bytes into buf.
385 strm.avail_out = left < UINT_MAX ? (unsigned)left : UINT_MAX;
386 strm.next_out = buf + len - left;
407 left -= got;
454 } while (ret == Z_OK && left);
458 return ret == Z_OK || ret == Z_STREAM_END ? len - left : ret;