Searched refs:lastLLSize (Results 1 – 3 of 3) sorted by relevance
| /linux-6.15/lib/zstd/decompress/ |
| H A D | zstd_decompress_block.c | 1594 ZSTD_memmove(op, litPtr, lastLLSize); in ZSTD_decompressSequences_bodySplitLitBuffer() 1595 op += lastLLSize; in ZSTD_decompressSequences_bodySplitLitBuffer() 1606 ZSTD_memcpy(op, litPtr, lastLLSize); in ZSTD_decompressSequences_bodySplitLitBuffer() 1607 op += lastLLSize; in ZSTD_decompressSequences_bodySplitLitBuffer() 1685 ZSTD_memcpy(op, litPtr, lastLLSize); in ZSTD_decompressSequences_body() 1686 op += lastLLSize; in ZSTD_decompressSequences_body() 1871 size_t const lastLLSize = litBufferEnd - litPtr; in ZSTD_decompressSequencesLong_body() local 1874 ZSTD_memmove(op, litPtr, lastLLSize); in ZSTD_decompressSequencesLong_body() 1875 op += lastLLSize; in ZSTD_decompressSequencesLong_body() 1883 ZSTD_memmove(op, litPtr, lastLLSize); in ZSTD_decompressSequencesLong_body() [all …]
|
| /linux-6.15/lib/zstd/compress/ |
| H A D | zstd_ldm.c | 700 size_t lastLLSize; in ZSTD_ldm_blockCompress() local 702 lastLLSize = blockCompressor(ms, seqStore, rep, src, srcSize); in ZSTD_ldm_blockCompress() 704 return lastLLSize; in ZSTD_ldm_blockCompress()
|
| H A D | zstd_compress.c | 3071 ZSTD_memcpy(seqStorePtr->lit, anchor, lastLLSize); in ZSTD_storeLastLiterals() 3072 seqStorePtr->lit += lastLLSize; in ZSTD_storeLastLiterals() 3216 size_t lastLLSize; in ZSTD_buildSeqStore() local 3233 lastLLSize = in ZSTD_buildSeqStore() 3258 lastLLSize = in ZSTD_buildSeqStore() 3416 const size_t lastLLSize = nbInLiterals - nbOutLiterals; in ZSTD_copyBlockSequences() local 3417 outSeqs[nbInSequences].litLength = (U32)lastLLSize; in ZSTD_copyBlockSequences() 6651 U32 const lastLLSize = (U32)(iend - ip); in ZSTD_transferSequences_noDelim() local 6653 DEBUGLOG(6, "Storing last literals of size: %u", lastLLSize); in ZSTD_transferSequences_noDelim() 6654 ZSTD_storeLastLiterals(&cctx->seqStore, ip, lastLLSize); in ZSTD_transferSequences_noDelim() [all …]
|