Searched refs:lastLLSize (Results 1 - 6 of 6) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/decompress/ |
H A 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_ 1813 size_t const lastLLSize = litBufferEnd - litPtr; global() local 1822 { size_t const lastLLSize = litBufferEnd - litPtr; global() local [all...] |
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | compress.c | 1098 size_t const lastLLSize = iend - anchor; in ZSTD_compressBlock_fast_generic() local 1099 memcpy(seqStorePtr->lit, anchor, lastLLSize); in ZSTD_compressBlock_fast_generic() 1100 seqStorePtr->lit += lastLLSize; in ZSTD_compressBlock_fast_generic() 1214 size_t const lastLLSize = iend - anchor; in ZSTD_compressBlock_fast_extDict_generic() local 1215 memcpy(seqStorePtr->lit, anchor, lastLLSize); in ZSTD_compressBlock_fast_extDict_generic() 1216 seqStorePtr->lit += lastLLSize; in ZSTD_compressBlock_fast_extDict_generic() 1377 size_t const lastLLSize = iend - anchor; in ZSTD_compressBlock_doubleFast_generic() local 1378 memcpy(seqStorePtr->lit, anchor, lastLLSize); in ZSTD_compressBlock_doubleFast_generic() 1379 seqStorePtr->lit += lastLLSize; in ZSTD_compressBlock_doubleFast_generic() 1537 size_t const lastLLSize in ZSTD_compressBlock_doubleFast_extDict_generic() local 2043 size_t const lastLLSize = iend - anchor; ZSTD_compressBlock_lazy_generic() local 2246 size_t const lastLLSize = iend - anchor; ZSTD_compressBlock_lazy_extDict_generic() local [all...] |
H A D | decompress.c | 1153 size_t const lastLLSize = litEnd - litPtr; in ZSTD_decompressSequences() local 1154 if (lastLLSize > (size_t)(oend - op)) in ZSTD_decompressSequences() 1156 memcpy(op, litPtr, lastLLSize); in ZSTD_decompressSequences() 1157 op += lastLLSize; in ZSTD_decompressSequences() 1435 size_t const lastLLSize = litEnd - litPtr; in ZSTD_decompressSequencesLong() local 1436 if (lastLLSize > (size_t)(oend - op)) in ZSTD_decompressSequencesLong() 1438 memcpy(op, litPtr, lastLLSize); in ZSTD_decompressSequencesLong() 1439 op += lastLLSize; in ZSTD_decompressSequencesLong()
|
H A D | zstd_opt.h | 693 size_t const lastLLSize = iend - anchor; in ZSTD_compressBlock_opt_generic() local 694 memcpy(seqStorePtr->lit, anchor, lastLLSize); in ZSTD_compressBlock_opt_generic() 695 seqStorePtr->lit += lastLLSize; in ZSTD_compressBlock_opt_generic() 1008 size_t lastLLSize = iend - anchor; in ZSTD_compressBlock_opt_extDict_generic() local 1009 memcpy(seqStorePtr->lit, anchor, lastLLSize); in ZSTD_compressBlock_opt_extDict_generic() 1010 seqStorePtr->lit += lastLLSize; in ZSTD_compressBlock_opt_extDict_generic()
|
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A 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()
|
H A D | zstd_compress.c | 2708 const BYTE* anchor, size_t lastLLSize) in ZSTD_storeLastLiterals() 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 2707 ZSTD_storeLastLiterals(seqStore_t* seqStorePtr, const BYTE* anchor, size_t lastLLSize) ZSTD_storeLastLiterals() argument 5770 U32 lastLLSize = (U32)(iend - ip); ZSTD_copySequencesToSeqStoreNoBlockDelim() local [all...] |
Completed in 22 milliseconds