Searched refs:lastLLSize (Results 1 – 3 of 3) sorted by relevance
/linux-4.19.296/lib/zstd/ |
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()
|
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 = iend - anchor; in ZSTD_compressBlock_doubleFast_extDict_generic() local [all …]
|
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()
|