Home
last modified time | relevance | path

Searched refs:streamPos (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/common/lzma/
H A DLzFind.c53 UInt32 MatchFinder_GetNumAvailableBytes(CMatchFinder *p) { return p->streamPos - p->pos; } in MatchFinder_GetNumAvailableBytes()
59 p->streamPos -= subValue; in MatchFinder_ReduceOffsets()
68 Byte *dest = p->buffer + (p->streamPos - p->pos); in MatchFinder_ReadBlock()
80 p->streamPos += (UInt32)size; in MatchFinder_ReadBlock()
81 if (p->streamPos - p->pos > p->keepSizeAfter) in MatchFinder_ReadBlock()
90 (size_t)(p->streamPos - p->pos + p->keepSizeBefore)); in MatchFinder_MoveBlock()
104 if (p->keepSizeAfter >= p->streamPos - p->pos) in MatchFinder_ReadIfRequired()
247 limit2 = p->streamPos - p->pos; in MatchFinder_SetLimits()
258 UInt32 lenLimit = p->streamPos - p->pos; in MatchFinder_SetLimits()
273 p->pos = p->streamPos = p->cyclicBufferSize; in MatchFinder_Init()
[all …]
H A DLzFind.h16 UInt32 streamPos; member
52 #define Inline_MatchFinder_GetNumAvailableBytes(p) ((p)->streamPos - (p)->pos)