Home | History | Annotate | Download | only in delphi

Lines Matching full:outbytes

132        OutBytes = number of bytes in OutBuf   }
134 out OutBuf: Pointer; out OutBytes: Integer);
142 OutBytes = number of bytes in OutBuf }
144 OutEstimate: Integer; out OutBuf: Pointer; out OutBytes: Integer);
287 out OutBuf: Pointer; out OutBytes: Integer);
295 OutBytes := ((InBytes + (InBytes div 10) + 12) + 255) and not 255;
296 GetMem(OutBuf, OutBytes);
301 strm.avail_out := OutBytes;
307 Inc(OutBytes, 256);
308 ReallocMem(OutBuf, OutBytes);
316 OutBytes := strm.total_out;
325 OutEstimate: Integer; out OutBuf: Pointer; out OutBytes: Integer);
336 OutBytes := BufInc
338 OutBytes := OutEstimate;
339 GetMem(OutBuf, OutBytes);
344 strm.avail_out := OutBytes;
350 Inc(OutBytes, BufInc);
351 ReallocMem(OutBuf, OutBytes);
359 OutBytes := strm.total_out;