Searched refs:lastLLSize (Results 1 – 3 of 3) sorted by relevance
/linux-6.6.21/lib/zstd/decompress/ |
D | zstd_decompress_block.c | 1516 size_t const lastLLSize = litBufferEnd - litPtr; local 1517 RETURN_ERROR_IF(lastLLSize > (size_t)(oend - op), dstSize_tooSmall, ""); 1519 ZSTD_memmove(op, litPtr, lastLLSize); 1520 op += lastLLSize; 1526 { size_t const lastLLSize = litBufferEnd - litPtr; local 1527 RETURN_ERROR_IF(lastLLSize > (size_t)(oend-op), dstSize_tooSmall, ""); 1529 ZSTD_memcpy(op, litPtr, lastLLSize); 1530 op += lastLLSize; 1615 { size_t const lastLLSize = litEnd - litPtr; local 1616 RETURN_ERROR_IF(lastLLSize > (size_t)(oend-op), dstSize_tooSmall, ""); [all …]
|
/linux-6.6.21/lib/zstd/compress/ |
D | zstd_ldm.c | 678 size_t lastLLSize; in ZSTD_ldm_blockCompress() local 680 lastLLSize = blockCompressor(ms, seqStore, rep, src, srcSize); in ZSTD_ldm_blockCompress() 682 return lastLLSize; in ZSTD_ldm_blockCompress()
|
D | zstd_compress.c | 2708 const BYTE* anchor, size_t lastLLSize) in ZSTD_storeLastLiterals() argument 2710 ZSTD_memcpy(seqStorePtr->lit, anchor, lastLLSize); in ZSTD_storeLastLiterals() 2711 seqStorePtr->lit += lastLLSize; in ZSTD_storeLastLiterals() 2759 size_t lastLLSize; in ZSTD_buildSeqStore() local 2767 lastLLSize = in ZSTD_buildSeqStore() 2784 lastLLSize = in ZSTD_buildSeqStore() 2796 … lastLLSize = blockCompressor(ms, &zc->seqStore, zc->blockState.nextCBlock->rep, src, srcSize); in ZSTD_buildSeqStore() 2798 { const BYTE* const lastLiterals = (const BYTE*)src + srcSize - lastLLSize; in ZSTD_buildSeqStore() 2799 ZSTD_storeLastLiterals(&zc->seqStore, lastLiterals, lastLLSize); in ZSTD_buildSeqStore() 2811 size_t lastLLSize; in ZSTD_copyBlockSequences() local [all …]
|