Lines Matching refs:lastLLSize
2376 const BYTE* anchor, size_t lastLLSize) in ZSTD_storeLastLiterals() argument
2378 ZSTD_memcpy(seqStorePtr->lit, anchor, lastLLSize); in ZSTD_storeLastLiterals()
2379 seqStorePtr->lit += lastLLSize; in ZSTD_storeLastLiterals()
2427 size_t lastLLSize; in ZSTD_buildSeqStore() local
2435 lastLLSize = in ZSTD_buildSeqStore()
2451 lastLLSize = in ZSTD_buildSeqStore()
2460 … lastLLSize = blockCompressor(ms, &zc->seqStore, zc->blockState.nextCBlock->rep, src, srcSize); in ZSTD_buildSeqStore()
2462 { const BYTE* const lastLiterals = (const BYTE*)src + srcSize - lastLLSize; in ZSTD_buildSeqStore()
2463 ZSTD_storeLastLiterals(&zc->seqStore, lastLiterals, lastLLSize); in ZSTD_buildSeqStore()
2475 size_t lastLLSize; in ZSTD_copyBlockSequences() local
2525 lastLLSize = seqStoreLiteralsSize - literalsRead; in ZSTD_copyBlockSequences()
2526 outSeqs[i].litLength = (U32)lastLLSize; in ZSTD_copyBlockSequences()
4655 U32 lastLLSize = (U32)(iend - ip); in ZSTD_copySequencesToSeqStoreNoBlockDelim() local
4657 DEBUGLOG(6, "Storing last literals of size: %u", lastLLSize); in ZSTD_copySequencesToSeqStoreNoBlockDelim()
4658 ZSTD_storeLastLiterals(&cctx->seqStore, ip, lastLLSize); in ZSTD_copySequencesToSeqStoreNoBlockDelim()
4659 seqPos->posInSrc += lastLLSize; in ZSTD_copySequencesToSeqStoreNoBlockDelim()