Lines Matching refs:cParams

449     const ZSTD_compressionParameters* const cParams = &ms->cParams;  in ZSTD_insertBt1()  local
451 U32 const hashLog = cParams->hashLog; in ZSTD_insertBt1()
454 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertBt1()
472 U32 const windowLow = ZSTD_getLowestMatchIndex(ms, target, cParams->windowLog); in ZSTD_insertBt1()
475 U32 nbCompares = 1U << cParams->searchLog; in ZSTD_insertBt1()
585 ZSTD_updateTree_internal(ms, ip, iend, ms->cParams.minMatch, ZSTD_noDict); in ZSTD_updateTree()
602 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_insertBtAndGetAllMatches() local
603 U32 const sufficient_len = MIN(cParams->targetLength, ZSTD_OPT_NUM -1); in ZSTD_insertBtAndGetAllMatches()
606 U32 const hashLog = cParams->hashLog; in ZSTD_insertBtAndGetAllMatches()
612 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertBtAndGetAllMatches()
620 U32 const windowLow = ZSTD_getLowestMatchIndex(ms, curr, cParams->windowLog); in ZSTD_insertBtAndGetAllMatches()
627 U32 nbCompares = 1U << cParams->searchLog; in ZSTD_insertBtAndGetAllMatches()
631 dictMode == ZSTD_dictMatchState ? &dms->cParams : NULL; in ZSTD_insertBtAndGetAllMatches()
845 assert(BOUNDED(3, ms->cParams.minMatch, 6) == mls); in ZSTD_btGetAllMatches_internal()
897 U32 const mls = BOUNDED(3, ms->cParams.minMatch, 6);
1093 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_compressBlock_opt_generic() local
1097 U32 const sufficient_len = MIN(cParams->targetLength, ZSTD_OPT_NUM -1); in ZSTD_compressBlock_opt_generic()
1098 U32 const minMatch = (cParams->minMatch == 3) ? 3 : 4; in ZSTD_compressBlock_opt_generic()