Lines Matching full:excess
24 output size plus a specified excess amount (see the EXCESS define
27 the compressed data that fit in the requested plus excess sized
46 EXCESS is chosen to be just greater than the shortfall seen in a
49 header on the second pass. EXCESS is set to be large enough so
135 #define EXCESS 256 /* empirically determined stream overage */ macro
162 blk = (unsigned char*)malloc(size + EXCESS); in main()
171 def.avail_out = size + EXCESS; in main()
180 if (ret == Z_STREAM_END && def.avail_out >= EXCESS) { in main()
182 have = size + EXCESS - def.avail_out; in main()
203 tmp = (unsigned char*)malloc(size + EXCESS); in main()
210 inf.avail_in = size + EXCESS; in main()
212 def.avail_out = size + EXCESS; in main()