Lines Matching refs:InBytes
133 procedure CompressBuf(const InBuf: Pointer; InBytes: Integer;
143 procedure DecompressBuf(const InBuf: Pointer; InBytes: Integer;
151 procedure DecompressToUserBuf(const InBuf: Pointer; InBytes: Integer;
286 procedure CompressBuf(const InBuf: Pointer; InBytes: Integer;
295 OutBytes := ((InBytes + (InBytes div 10) + 12) + 255) and not 255;
299 strm.avail_in := InBytes;
324 procedure DecompressBuf(const InBuf: Pointer; InBytes: Integer;
334 BufInc := (InBytes + 255) and not 255;
342 strm.avail_in := InBytes;
366 procedure DecompressToUserBuf(const InBuf: Pointer; InBytes: Integer;
375 strm.avail_in := InBytes;