Lines Matching refs:litPtr
2820 const BYTE* litPtr; member
3098 dctx->litPtr = dctx->litBuffer; in ZSTDv06_decodeLiteralsBlock()
3120 dctx->litPtr = dctx->litBuffer; in ZSTDv06_decodeLiteralsBlock()
3145 dctx->litPtr = dctx->litBuffer; in ZSTDv06_decodeLiteralsBlock()
3151 dctx->litPtr = istart+lhSize; in ZSTDv06_decodeLiteralsBlock()
3174 dctx->litPtr = dctx->litBuffer; in ZSTDv06_decodeLiteralsBlock()
3363 const BYTE** litPtr, const BYTE* const litLimit, in ZSTDv06_execSequence() argument
3370 const BYTE* const iLitEnd = *litPtr + sequence.litLength; in ZSTDv06_execSequence()
3379 …ZSTDv06_wildcopy(op, *litPtr, sequence.litLength); /* note : oLitEnd <= oend-8 : no risk of over… in ZSTDv06_execSequence()
3381 *litPtr = iLitEnd; /* update for next sequence */ in ZSTDv06_execSequence()
3447 const BYTE* litPtr = dctx->litPtr; in ZSTDv06_decompressSequences() local
3448 const BYTE* const litEnd = litPtr + dctx->litSize; in ZSTDv06_decompressSequences()
3491 …{ size_t const oneSeqSize = ZSTDv06_execSequence(op, oend, sequence, &litPtr, litEnd, base, vBas… in ZSTDv06_decompressSequences()
3501 { size_t const lastLLSize = litEnd - litPtr; in ZSTDv06_decompressSequences()
3502 … if (litPtr > litEnd) return ERROR(corruption_detected); /* too many literals already used */ in ZSTDv06_decompressSequences()
3505 memcpy(op, litPtr, lastLLSize); in ZSTDv06_decompressSequences()