Home
last modified time | relevance | path

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

/linux-6.6.21/lib/zstd/compress/
Dzstd_compress.c2732 ZSTD_ldm_skipRawSeqStoreBytes(&zc->externSeqStore, srcSize); in ZSTD_buildSeqStore()
2734 … ZSTD_ldm_skipSequences(&zc->externSeqStore, srcSize, zc->appliedParams.cParams.minMatch); in ZSTD_buildSeqStore()
2764 if (zc->externSeqStore.pos < zc->externSeqStore.size) { in ZSTD_buildSeqStore()
2768 ZSTD_ldm_blockCompress(&zc->externSeqStore, in ZSTD_buildSeqStore()
2773 assert(zc->externSeqStore.pos <= zc->externSeqStore.size); in ZSTD_buildSeqStore()
4011 cctx->externSeqStore.seq = seq; in ZSTD_referenceExternalSequences()
4012 cctx->externSeqStore.size = nbSeq; in ZSTD_referenceExternalSequences()
4013 cctx->externSeqStore.capacity = nbSeq; in ZSTD_referenceExternalSequences()
4014 cctx->externSeqStore.pos = 0; in ZSTD_referenceExternalSequences()
4015 cctx->externSeqStore.posInSequence = 0; in ZSTD_referenceExternalSequences()
Dzstd_compress_internal.h385 rawSeqStore_t externSeqStore; /* Mutable reference to external sequences */ member