Lines Matching defs:input
32 // input raw deflate stream a block at a time, and at the end of each block
39 // The input file is positioned to the specified location in the index, and if
65 #define CHUNK 16384 // file input buffer size
138 unsigned char buf[CHUNK]; // input buffer
140 off_t totin = 0; // total bytes read from input
149 // Assure available input, at least until reaching EOF.
160 // At the start of the input -- determine the type. Assume raw
212 // There is more input after the end of a gzip member. Reset the
281 // Check input.
295 // Build an input buffer for inflate that is a multiple of eight bits in
314 // Deliver the input to inflate(). There is no output space provided, but
316 // provided input. The reason is that there will be at most 16 bits of
317 // input from value after the empty deflate blocks (which themselves
357 // Initialize the input file and prime the inflate engine to start there.
373 unsigned char input[CHUNK];
391 // Assure available input.
392 strm.avail_in = fread(input, 1, CHUNK, in);
397 strm.next_in = input;
424 // The input does not have a complete trailer.
435 strm.avail_in = fread(input, 1, CHUNK, in);
440 strm.next_in = input;
473 // Open the input file.
527 got == Z_MEM_ERROR ? "out of memory" : "input corrupted");