Searched refs:lastLLSize (Results 1 - 3 of 3) sorted by relevance

/linux-master/lib/zstd/decompress/
H A Dzstd_decompress_block.c1516 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_
1813 size_t const lastLLSize = litBufferEnd - litPtr; local
1822 { size_t const lastLLSize = litBufferEnd - litPtr; local
[all...]
/linux-master/lib/zstd/compress/
H A Dzstd_ldm.c678 size_t lastLLSize; local
680 lastLLSize = blockCompressor(ms, seqStore, rep, src, srcSize);
682 return lastLLSize;
H A Dzstd_compress.c2708 const BYTE* anchor, size_t lastLLSize)
2710 ZSTD_memcpy(seqStorePtr->lit, anchor, lastLLSize);
2711 seqStorePtr->lit += lastLLSize;
2759 size_t lastLLSize; local
2767 lastLLSize =
2784 lastLLSize =
2796 lastLLSize = blockCompressor(ms, &zc->seqStore, zc->blockState.nextCBlock->rep, src, srcSize);
2798 { const BYTE* const lastLiterals = (const BYTE*)src + srcSize - lastLLSize;
2799 ZSTD_storeLastLiterals(&zc->seqStore, lastLiterals, lastLLSize);
2811 size_t lastLLSize; local
2707 ZSTD_storeLastLiterals(seqStore_t* seqStorePtr, const BYTE* anchor, size_t lastLLSize) argument
5770 U32 lastLLSize = (U32)(iend - ip); local
[all...]

Completed in 154 milliseconds