Lines Matching refs:maxNbSeq

1651     size_t const maxNbSeq = ZSTD_maxNbSeq(blockSize, cParams->minMatch, useSequenceProducer);  in ZSTD_estimateCCtxSize_usingCCtxParams_internal()  local
1653 + ZSTD_cwksp_aligned64_alloc_size(maxNbSeq * sizeof(SeqDef)) in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
1654 + 3 * ZSTD_cwksp_alloc_size(maxNbSeq * sizeof(BYTE)); in ZSTD_estimateCCtxSize_usingCCtxParams_internal()
2059 …size_t const maxNbSeq = ZSTD_maxNbSeq(blockSize, params->cParams.minMatch, ZSTD_hasExtSeqProd(para… in ZSTD_resetCCtx_internal() local
2145 …zc->seqStore.sequencesStart = (SeqDef*)ZSTD_cwksp_reserve_aligned64(ws, maxNbSeq * sizeof(SeqDef)); in ZSTD_resetCCtx_internal()
2194 zc->seqStore.maxNbSeq = maxNbSeq; in ZSTD_resetCCtx_internal()
2195 zc->seqStore.llCode = ZSTD_cwksp_reserve_buffer(ws, maxNbSeq * sizeof(BYTE)); in ZSTD_resetCCtx_internal()
2196 zc->seqStore.mlCode = ZSTD_cwksp_reserve_buffer(ws, maxNbSeq * sizeof(BYTE)); in ZSTD_resetCCtx_internal()
2197 zc->seqStore.ofCode = ZSTD_cwksp_reserve_buffer(ws, maxNbSeq * sizeof(BYTE)); in ZSTD_resetCCtx_internal()
2616 assert(nbSeq <= seqStorePtr->maxNbSeq); in ZSTD_seqToCodes()
3429 const size_t maxNbSeq = (srcSize / ZSTD_MINMATCH_MIN) + 1; in ZSTD_sequenceBound() local
3431 return maxNbSeq + maxNbDelims; in ZSTD_sequenceBound()
6481 RETURN_ERROR_IF(idx - seqPos->idx >= cctx->seqStore.maxNbSeq, externalSequences_invalid, in ZSTD_transferSequences_wBlockDelim()
6635 RETURN_ERROR_IF(idx - seqPos->idx >= cctx->seqStore.maxNbSeq, externalSequences_invalid, in ZSTD_transferSequences_noDelim()
7118 RETURN_ERROR_IF(nbSequences >= cctx->seqStore.maxNbSeq, externalSequences_invalid, in ZSTD_convertBlockSequences()