Home
last modified time | relevance | path

Searched refs:keepSizeAfter (Results 1 – 5 of 5) sorted by relevance

/external/xz-java/src/org/tukaani/xz/lz/
DLZEncoder.java33 private final int keepSizeAfter; field in LZEncoder
64 int keepSizeAfter = extraSizeAfter + matchLenMax; in getBufSize() local
66 return keepSizeBefore + keepSizeAfter + reserveSize; in getBufSize()
147 keepSizeAfter = extraSizeAfter + matchLenMax; in LZEncoder()
201 if (readPos >= bufSize - keepSizeAfter) in fillWindow()
214 if (writePos >= keepSizeAfter) in fillWindow()
215 readLimit = writePos - keepSizeAfter; in fillWindow()
/external/lzma/Java/SevenZip/Compression/LZ/
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()
/external/lzma/CS/7zip/Compress/LZ/
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()
/external/lzma/C/
DLzFind.c32 UInt32 blockSize = p->keepSizeBefore + p->keepSizeAfter + keepSizeReserv; in LzInWindow_Create()
93 if (p->streamPos - p->pos > p->keepSizeAfter) in MatchFinder_ReadBlock()
111 return ((size_t)(p->bufferBase + p->blockSize - p->buffer) <= p->keepSizeAfter); in MatchFinder_NeedMove()
118 if (p->keepSizeAfter >= p->streamPos - p->pos) in MatchFinder_ReadIfRequired()
197 p->keepSizeAfter = matchMaxLen + keepAddBufferAfter; in MatchFinder_Create()
280 if (limit2 <= p->keepSizeAfter) in MatchFinder_SetLimits()
286 limit2 -= p->keepSizeAfter; in MatchFinder_SetLimits()
377 if (!p->streamEndWasReached && p->keepSizeAfter == p->streamPos - p->pos) in MatchFinder_CheckLimits()
DLzFind.h40 UInt32 keepSizeAfter; member