Lines Matching defs:CountValue
1243 uint64_t CountValue = CountFromProfile[I++];
1248 if (InstrBB == FuncEntry && CountValue == 0)
1249 CountValue = 1;
1250 Info.setBBInfoCount(CountValue);
1942 uint64_t CountValue = 0;
1947 CountValue = *Func.getBBInfo(&BBI).Count;
1949 SumCount.add(APFloat(CountValue * 1.0), APFloat::rmNearestTiesToEven);
1990 uint64_t CountValue = 0;
1993 CountValue = Func.getBBInfo(&BBI).Count.value_or(CountValue);
1996 if (CountValue)
2003 bool rawIsHot = CountValue >= HotCountThreshold;
2005 bool rawIsCold = CountValue <= ColdCountThreshold;
2017 if ((CountValue < PGOVerifyBFICutoff) &&
2020 uint64_t Diff = (BFICountValue >= CountValue)
2021 ? BFICountValue - CountValue
2022 : CountValue - BFICountValue;
2023 if (Diff <= CountValue / 100 * PGOVerifyBFIRatio)
2032 << " Count=" << ore::NV("Count", CountValue)