Searched refs:keepSizeAfter (Results 1 – 5 of 5) sorted by relevance
33 private final int keepSizeAfter; field in LZEncoder64 int keepSizeAfter = extraSizeAfter + matchLenMax; in getBufSize() local66 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()
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()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()
40 UInt32 keepSizeAfter; member