Searched defs:EXCESS (Results 1 - 1 of 1) sorted by relevance

/vbox/src/libs/zlib-1.2.6/examples/
H A Dfitblk.c20 output size plus a specfied excess amount (see the EXCESS define
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 */ macro
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;
[all...]

Completed in 251 milliseconds