Lines Matching refs:cParams
374 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_insertBt1() local
376 U32 const hashLog = cParams->hashLog; in ZSTD_insertBt1()
379 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertBt1()
397 U32 nbCompares = 1U << cParams->searchLog; in ZSTD_insertBt1()
505 ZSTD_updateTree_internal(ms, ip, iend, ms->cParams.minMatch, ZSTD_noDict); in ZSTD_updateTree()
519 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_insertBtAndGetAllMatches() local
520 U32 const sufficient_len = MIN(cParams->targetLength, ZSTD_OPT_NUM -1); in ZSTD_insertBtAndGetAllMatches()
523 U32 const hashLog = cParams->hashLog; in ZSTD_insertBtAndGetAllMatches()
529 U32 const btLog = cParams->chainLog - 1; in ZSTD_insertBtAndGetAllMatches()
537 U32 const windowLow = ZSTD_getLowestMatchIndex(ms, curr, cParams->windowLog); in ZSTD_insertBtAndGetAllMatches()
544 U32 nbCompares = 1U << cParams->searchLog; in ZSTD_insertBtAndGetAllMatches()
548 dictMode == ZSTD_dictMatchState ? &dms->cParams : NULL; in ZSTD_insertBtAndGetAllMatches()
751 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_BtGetAllMatches() local
752 U32 const matchLengthSearch = cParams->minMatch; in ZSTD_BtGetAllMatches()
945 const ZSTD_compressionParameters* const cParams = &ms->cParams; in ZSTD_compressBlock_opt_generic() local
947 U32 const sufficient_len = MIN(cParams->targetLength, ZSTD_OPT_NUM -1); in ZSTD_compressBlock_opt_generic()
948 U32 const minMatch = (cParams->minMatch == 3) ? 3 : 4; in ZSTD_compressBlock_opt_generic()