Home | History | Annotate | Download | only in delphi

Lines Matching full:inbytes

130        InBytes = number of bytes in InBuf
133 procedure CompressBuf(const InBuf: Pointer; InBytes: Integer;
139 InBytes = number of bytes in InBuf
143 procedure DecompressBuf(const InBuf: Pointer; InBytes: Integer;
148 InBytes = number of bytes in InBuf
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;