Lines Matching refs:bufferBase
23 ISzAlloc_Free(alloc, p->bufferBase); in LzInWindow_Free()
24 p->bufferBase = NULL; in LzInWindow_Free()
38 if (!p->bufferBase || p->blockSize != blockSize) in LzInWindow_Create()
42 p->bufferBase = (Byte *)ISzAlloc_Alloc(alloc, (size_t)blockSize); in LzInWindow_Create()
44 return (p->bufferBase != NULL); in LzInWindow_Create()
80 size_t size = (p->bufferBase + p->blockSize - dest); in MatchFinder_ReadBlock()
100 memmove(p->bufferBase, in MatchFinder_MoveBlock()
103 p->buffer = p->bufferBase + p->keepSizeBefore; in MatchFinder_MoveBlock()
111 return ((size_t)(p->bufferBase + p->blockSize - p->buffer) <= p->keepSizeAfter); in MatchFinder_NeedMove()
142 p->bufferBase = NULL; in MatchFinder_Construct()
324 p->buffer = p->bufferBase; in MatchFinder_Init_3()