Searched refs:lastLLSize (Results 1 – 3 of 3) sorted by relevance
/linux-6.1.9/lib/zstd/decompress/ |
D | zstd_decompress_block.c | 1212 { size_t const lastLLSize = litEnd - litPtr; in ZSTD_decompressSequences_body() local 1213 RETURN_ERROR_IF(lastLLSize > (size_t)(oend-op), dstSize_tooSmall, ""); in ZSTD_decompressSequences_body() 1215 ZSTD_memcpy(op, litPtr, lastLLSize); in ZSTD_decompressSequences_body() 1216 op += lastLLSize; in ZSTD_decompressSequences_body() 1317 { size_t const lastLLSize = litEnd - litPtr; in ZSTD_decompressSequencesLong_body() local 1318 RETURN_ERROR_IF(lastLLSize > (size_t)(oend-op), dstSize_tooSmall, ""); in ZSTD_decompressSequencesLong_body() 1320 ZSTD_memcpy(op, litPtr, lastLLSize); in ZSTD_decompressSequencesLong_body() 1321 op += lastLLSize; in ZSTD_decompressSequencesLong_body()
|
/linux-6.1.9/lib/zstd/compress/ |
D | zstd_ldm.c | 640 size_t lastLLSize; in ZSTD_ldm_blockCompress() local 642 lastLLSize = blockCompressor(ms, seqStore, rep, src, srcSize); in ZSTD_ldm_blockCompress() 644 return lastLLSize; in ZSTD_ldm_blockCompress()
|
D | zstd_compress.c | 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 [all …]
|