Lines Matching defs:buf
138 unsigned char buf[CHUNK]; // input buffer
151 strm.avail_in = fread(buf, 1, sizeof(buf), in);
153 strm.next_in = buf;
154 if (strm.avail_in < sizeof(buf) && ferror(in)) {
335 off_t offset, unsigned char *buf, size_t len)
384 // Uncompress up to left bytes into buf.
386 strm.next_out = buf + len - left;
457 // Return the number of uncompressed bytes read into buf, or the error.
521 unsigned char buf[LEN];
524 ptrdiff_t got = deflate_index_extract(in, index, offset, buf, LEN);
529 fwrite(buf, 1, got, stdout);