Lines Matching refs:bufferBase
26 alloc->Free(alloc, p->bufferBase, 0); in LzInWindow_Free()
27 p->bufferBase = 0; in LzInWindow_Free()
41 if (p->bufferBase == 0 || p->blockSize != blockSize) in LzInWindow_Create()
45 p->bufferBase = (Byte *)alloc->Alloc(alloc, (size_t)blockSize); in LzInWindow_Create()
47 return (p->bufferBase != 0); in LzInWindow_Create()
69 size_t size = (p->bufferBase + p->blockSize - dest); in MatchFinder_ReadBlock()
88 memmove(p->bufferBase, in MatchFinder_MoveBlock()
91 p->buffer = p->bufferBase + p->keepSizeBefore; in MatchFinder_MoveBlock()
97 return ((size_t)(p->bufferBase + p->blockSize - p->buffer) <= p->keepSizeAfter); in MatchFinder_NeedMove()
130 p->bufferBase = 0; in MatchFinder_Construct()
272 p->buffer = p->bufferBase; in MatchFinder_Init()