Home
last modified time | relevance | path

Searched refs:lastLLSize (Results 1 – 2 of 2) sorted by relevance

/external/u-boot/lib/zstd/
Dzstd_opt.h683 size_t const lastLLSize = iend - anchor; in ZSTD_compressBlock_opt_generic() local
684 memcpy(seqStorePtr->lit, anchor, lastLLSize); in ZSTD_compressBlock_opt_generic()
685 seqStorePtr->lit += lastLLSize; in ZSTD_compressBlock_opt_generic()
998 size_t lastLLSize = iend - anchor; in ZSTD_compressBlock_opt_extDict_generic() local
999 memcpy(seqStorePtr->lit, anchor, lastLLSize); in ZSTD_compressBlock_opt_extDict_generic()
1000 seqStorePtr->lit += lastLLSize; in ZSTD_compressBlock_opt_extDict_generic()
Ddecompress.c1143 size_t const lastLLSize = litEnd - litPtr; in ZSTD_decompressSequences() local
1144 if (lastLLSize > (size_t)(oend - op)) in ZSTD_decompressSequences()
1146 memcpy(op, litPtr, lastLLSize); in ZSTD_decompressSequences()
1147 op += lastLLSize; in ZSTD_decompressSequences()
1425 size_t const lastLLSize = litEnd - litPtr; in ZSTD_decompressSequencesLong() local
1426 if (lastLLSize > (size_t)(oend - op)) in ZSTD_decompressSequencesLong()
1428 memcpy(op, litPtr, lastLLSize); in ZSTD_decompressSequencesLong()
1429 op += lastLLSize; in ZSTD_decompressSequencesLong()