Lines Matching refs:EXCESS
20 output size plus a specfied excess amount (see the EXCESS define
23 the compressed data that fit in the requested plus excess sized
42 EXCESS is chosen to be just greater than the shortfall seen in a
45 header on the second pass. EXCESS is set to be large enough so
123 #define EXCESS 256 /* empirically determined stream overage */
147 blk = malloc(size + EXCESS);
156 def.avail_out = size + EXCESS;
163 if (ret == Z_STREAM_END && def.avail_out >= EXCESS) {
165 have = size + EXCESS - def.avail_out;
186 tmp = malloc(size + EXCESS);
193 inf.avail_in = size + EXCESS;
195 def.avail_out = size + EXCESS;