Lines Matching defs:litPtr
2390 const BYTE* litPtr;
2463 dctx->litPtr = dctx->litBuffer;
2476 dctx->litPtr = dctx->litBuffer;
2482 dctx->litPtr = istart+3;
2491 dctx->litPtr = dctx->litBuffer;
2684 const BYTE** litPtr, const BYTE* const litLimit,
2693 const BYTE* const litEnd = *litPtr
2699 if (sequence.litLength > (size_t)(litLimit - *litPtr)) return ERROR(corruption_detected);
2708 ZSTD_wildcopy(op, *litPtr, (ptrdiff_t)sequence.litLength); /* note : oLitEnd <= oend-8 : no risk of overwrite beyond oend */
2710 *litPtr = litEnd; /* update for next sequence */
2769 const BYTE* litPtr = dctx->litPtr;
2770 const BYTE* const litEnd = litPtr + dctx->litSize;
2805 oneSeqSize = ZSTD_execSequence(op, sequence, &litPtr, litEnd, base, oend);
2816 size_t lastLLSize = litEnd - litPtr;
2817 if (litPtr > litEnd) return ERROR(corruption_detected);
2820 if (op != litPtr) memmove(op, litPtr, lastLLSize);