Home | History | Annotate | Download | only in legacy

Lines Matching defs:litPtr

2894     const BYTE* litPtr;
3272 dctx->litPtr = dctx->litBuffer;
3295 dctx->litPtr = dctx->litBuffer;
3320 dctx->litPtr = dctx->litBuffer;
3326 dctx->litPtr = istart+lhSize;
3349 dctx->litPtr = dctx->litBuffer;
3536 const BYTE** litPtr, const BYTE* const litLimit,
3543 const BYTE* const iLitEnd = *litPtr + sequence.litLength;
3550 assert(litLimit >= *litPtr);
3551 if (sequence.litLength > (size_t)(litLimit - *litPtr)) return ERROR(corruption_detected);;
3554 ZSTDv07_wildcopy(op, *litPtr, (ptrdiff_t)sequence.litLength); /* note : since oLitEnd <= oend-WILDCOPY_OVERLENGTH, no risk of overwrite beyond oend */
3556 *litPtr = iLitEnd; /* update for next sequence */
3622 const BYTE* litPtr = dctx->litPtr;
3623 const BYTE* const litEnd = litPtr + dctx->litSize;
3652 size_t const oneSeqSize = ZSTDv07_execSequence(op, oend, sequence, &litPtr, litEnd, base, vBase, dictEnd);
3664 { size_t const lastLLSize = litEnd - litPtr;
3665 /* if (litPtr > litEnd) return ERROR(corruption_detected); */ /* too many literals already used */
3668 memcpy(op, litPtr, lastLLSize);