Searched refs:keepSizeAfter (Results 1 – 5 of 5) sorted by relevance
32 private final int keepSizeAfter; field in LZEncoder61 int keepSizeAfter = extraSizeAfter + matchLenMax; in getBufSize() local63 return keepSizeBefore + keepSizeAfter + reserveSize; in getBufSize()142 keepSizeAfter = extraSizeAfter + matchLenMax; in LZEncoder()192 if (readPos >= buf.length - keepSizeAfter) in fillWindow()205 if (writePos >= keepSizeAfter) in fillWindow()206 readLimit = writePos - keepSizeAfter; in fillWindow()
67 public void Create(int keepSizeBefore, int keepSizeAfter, int keepSizeReserv) in Create() argument70 _keepSizeAfter = keepSizeAfter; in Create()71 int blockSize = keepSizeBefore + keepSizeAfter + keepSizeReserv; in Create()78 _pointerToLastSafePosition = _blockSize - keepSizeAfter; in Create()
67 public void Create(UInt32 keepSizeBefore, UInt32 keepSizeAfter, UInt32 keepSizeReserv) in Create() argument70 _keepSizeAfter = keepSizeAfter; in Create()71 UInt32 blockSize = keepSizeBefore + keepSizeAfter + keepSizeReserv; in Create()78 _pointerToLastSafePosition = _blockSize - keepSizeAfter; in Create()
32 UInt32 blockSize = p->keepSizeBefore + p->keepSizeAfter + keepSizeReserv; in LzInWindow_Create()89 if (p->streamPos - p->pos > p->keepSizeAfter) in MatchFinder_ReadBlock()107 return ((size_t)(p->bufferBase + p->blockSize - p->buffer) <= p->keepSizeAfter); in MatchFinder_NeedMove()114 if (p->keepSizeAfter >= p->streamPos - p->pos) in MatchFinder_ReadIfRequired()189 p->keepSizeAfter = matchMaxLen + keepAddBufferAfter; in MatchFinder_Create()255 if (limit2 <= p->keepSizeAfter) in MatchFinder_SetLimits()261 limit2 -= p->keepSizeAfter; in MatchFinder_SetLimits()317 if (!p->streamEndWasReached && p->keepSizeAfter == p->streamPos - p->pos) in MatchFinder_CheckLimits()
36 UInt32 keepSizeAfter; member