Home | History | Annotate | Download | only in legacy

Lines Matching defs:litPtr

2452     const BYTE* litPtr;
2594 dctx->litPtr = dctx->litBuffer;
2607 dctx->litPtr = dctx->litBuffer;
2613 dctx->litPtr = istart+3;
2621 dctx->litPtr = dctx->litBuffer;
2811 const BYTE** litPtr, const BYTE* const litLimit,
2820 const BYTE* const litEnd = *litPtr + sequence.litLength;
2827 if (sequence.litLength > (size_t)(litLimit - *litPtr)) return ERROR(corruption_detected);
2835 ZSTD_wildcopy(op, *litPtr, (ptrdiff_t)sequence.litLength); /* note : oLitEnd <= oend-8 : no risk of overwrite beyond oend */
2837 *litPtr = litEnd; /* update for next sequence */
2911 const BYTE* litPtr = dctx->litPtr;
2912 const BYTE* const litEnd = litPtr + dctx->litSize;
2950 oneSeqSize = ZSTD_execSequence(op, oend, sequence, &litPtr, litEnd, base, vBase, dictEnd);
2960 size_t lastLLSize = litEnd - litPtr;
2961 if (litPtr > litEnd) return ERROR(corruption_detected);
2964 if (op != litPtr) memcpy(op, litPtr, lastLLSize);