Home
last modified time | relevance | path

Searched refs:keepSizeAfter (Results 1 - 4 of 4) sorted by relevance

/third_party/lzma/Java/SevenZip/Compression/LZ/
H A DInWindow.java67 public void Create(int keepSizeBefore, int keepSizeAfter, int keepSizeReserv) in Create() argument
70 _keepSizeAfter = keepSizeAfter; in Create()
71 int blockSize = keepSizeBefore + keepSizeAfter + keepSizeReserv; in Create()
78 _pointerToLastSafePosition = _blockSize - keepSizeAfter; in Create()
/third_party/lzma/CS/7zip/Compress/LZ/
H A DLzInWindow.cs67 public void Create(UInt32 keepSizeBefore, UInt32 keepSizeAfter, UInt32 keepSizeReserv) in Create() argument
70 _keepSizeAfter = keepSizeAfter; in Create()
71 UInt32 blockSize = keepSizeBefore + keepSizeAfter + keepSizeReserv; in Create()
78 _pointerToLastSafePosition = _blockSize - keepSizeAfter; in Create()
/third_party/lzma/C/
H A DLzFind.c144 NeedMove() and MoveBlock() povide more than (keepSizeAfter) in MatchFinder_ReadBlock()
172 if (GET_AVAIL_BYTES(p) > p->keepSizeAfter) in MatchFinder_ReadBlock()
174 /* here and in another (p->keepSizeAfter) checks we keep on 1 byte more than was requested by Create() function in MatchFinder_ReadBlock()
175 (GET_AVAIL_BYTES(p) >= p->keepSizeAfter) - minimal required size */ in MatchFinder_ReadBlock()
178 // on exit: (p->result != SZ_OK || p->streamEndWasReached || GET_AVAIL_BYTES(p) > p->keepSizeAfter) in MatchFinder_ReadBlock()
198 condition (p->blockSize > dataSize + p->keepSizeAfter) is met
208 return ((size_t)(p->bufBase + p->blockSize - p->buffer) <= p->keepSizeAfter); in MatchFinder_NeedMove()
213 if (p->keepSizeAfter >= GET_AVAIL_BYTES(p)) in MatchFinder_ReadIfRequired()
282 UInt32 blockSize = (p->keepSizeBefore + p->keepSizeAfter); in GetBlockSize()
380 /* we need (p->keepSizeAfter > in MatchFinder_Create()
[all...]
H A DLzFind.h40 UInt32 keepSizeAfter; member

Completed in 3 milliseconds