Home
last modified time | relevance | path

Searched refs:FWeight (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_internal.h1445 U32 const FWeight = (newStat << fp_accuracy) >> hb; in ZSTD_fWeight() local
1446 U32 const weight = BWeight + FWeight; in ZSTD_fWeight()
H A Dzstd_opt.c62 U32 const FWeight = (stat << BITCOST_ACCURACY) >> hb; in ZSTD_fracWeight() local
63 U32 const weight = BWeight + FWeight; in ZSTD_fracWeight()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_compress_internal.h1444 U32 const FWeight = (newStat << fp_accuracy) >> hb; in ZSTD_fWeight() local
1445 U32 const weight = BWeight + FWeight; in ZSTD_fWeight()
H A Dzstd_opt.c61 U32 const FWeight = (stat << BITCOST_ACCURACY) >> hb; in ZSTD_fracWeight() local
62 U32 const weight = BWeight + FWeight; in ZSTD_fracWeight()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp3112 uint64_t TWeight, FWeight; in isProfitableToSpeculate() local
3113 if (!extractBranchWeights(*BI, TWeight, FWeight) || (TWeight + FWeight) == 0) in isProfitableToSpeculate()
3119 uint64_t EndWeight = *Invert ? TWeight : FWeight; in isProfitableToSpeculate()
3121 BranchProbability::getBranchProbability(EndWeight, TWeight + FWeight); in isProfitableToSpeculate()
3670 uint64_t TWeight, FWeight; in foldTwoEntryPHINode() local
3671 if (extractBranchWeights(*DomBI, TWeight, FWeight) && in foldTwoEntryPHINode()
3672 (TWeight + FWeight) != 0) { in foldTwoEntryPHINode()
3674 BranchProbability::getBranchProbability(TWeight, TWeight + FWeight); in foldTwoEntryPHINode()