Lines Matching defs:litPtr
2607 const BYTE* litPtr;
2855 dctx->litPtr = dctx->litBuffer;
2879 dctx->litPtr = dctx->litBuffer;
2905 dctx->litPtr = dctx->litBuffer;
2911 dctx->litPtr = istart+lhSize;
2935 dctx->litPtr = dctx->litBuffer;
3173 const BYTE** litPtr, const BYTE* const litLimit,
3182 const BYTE* const litEnd = *litPtr + sequence.litLength;
3189 if (sequence.litLength > (size_t)(litLimit - *litPtr)) return ERROR(corruption_detected);
3197 ZSTDv05_wildcopy(op, *litPtr, (ptrdiff_t)sequence.litLength); /* note : oLitEnd <= oend-8 : no risk of overwrite beyond oend */
3199 *litPtr = litEnd; /* update for next sequence */
3267 const BYTE* litPtr = dctx->litPtr;
3268 const BYTE* const litEnd = litPtr + dctx->litSize;
3305 oneSeqSize = ZSTDv05_execSequence(op, oend, sequence, &litPtr, litEnd, base, vBase, dictEnd);
3316 size_t lastLLSize = litEnd - litPtr;
3317 if (litPtr > litEnd) return ERROR(corruption_detected); /* too many literals already used */
3320 memcpy(op, litPtr, lastLLSize);