Home | History | Annotate | Download | only in lib

Lines Matching defs:streamPtr

648     LZ4HC_CCtx_internal* const streamPtr = &LZ4_streamHCPtr->internal_donotuse;
649 int const prefixSize = (int)(streamPtr->end - (streamPtr->base + streamPtr->dictLimit));
653 memmove(safeBuffer, streamPtr->end - dictSize, dictSize);
654 { U32 const endIndex = (U32)(streamPtr->end - streamPtr->base);
655 streamPtr->end = (const BYTE*)safeBuffer + dictSize;
656 streamPtr->base = streamPtr->end - endIndex;
657 streamPtr->dictLimit = endIndex - dictSize;
658 streamPtr->lowLimit = endIndex - dictSize;
659 if (streamPtr->nextToUpdate < streamPtr->dictLimit) streamPtr->nextToUpdate = streamPtr->dictLimit;