Lines Matching refs:litPtr
2508 const BYTE* litPtr; member
2650 dctx->litPtr = dctx->litBuffer; in ZSTD_decodeLiteralsBlock()
2663 dctx->litPtr = dctx->litBuffer; in ZSTD_decodeLiteralsBlock()
2669 dctx->litPtr = istart+3; in ZSTD_decodeLiteralsBlock()
2677 dctx->litPtr = dctx->litBuffer; in ZSTD_decodeLiteralsBlock()
2867 const BYTE** litPtr, const BYTE* const litLimit, in ZSTD_execSequence() argument
2876 const BYTE* const litEnd = *litPtr + sequence.litLength; in ZSTD_execSequence()
2885 …ZSTD_wildcopy(op, *litPtr, sequence.litLength); /* note : oLitEnd <= oend-8 : no risk of overwri… in ZSTD_execSequence()
2887 *litPtr = litEnd; /* update for next sequence */ in ZSTD_execSequence()
2961 const BYTE* litPtr = dctx->litPtr; in ZSTD_decompressSequences() local
2962 const BYTE* const litEnd = litPtr + dctx->litSize; in ZSTD_decompressSequences()
3000 … oneSeqSize = ZSTD_execSequence(op, oend, sequence, &litPtr, litEnd, base, vBase, dictEnd); in ZSTD_decompressSequences()
3010 size_t lastLLSize = litEnd - litPtr; in ZSTD_decompressSequences()
3011 if (litPtr > litEnd) return ERROR(corruption_detected); in ZSTD_decompressSequences()
3014 if (op != litPtr) memcpy(op, litPtr, lastLLSize); in ZSTD_decompressSequences()