Home | History | Annotate | Download | only in llvm-prof

Lines Matching full:double

63   : public std::binary_function<std::pair<T, double>,
64 std::pair<T, double>, bool> {
65 bool operator()(const std::pair<T, double> &LHS,
66 const std::pair<T, double> &RHS) const {
71 static double ignoreMissing(double w) {
84 double w = PI.getExecutionCount(F);
92 double w = PI.getExecutionCount(BB);
105 std::vector<std::pair<ProfileInfo::Edge, double> > SuccCounts;
110 double w = ignoreMissing(PI.getEdgeWeight(std::make_pair(BB, Succ)));
158 std::vector<std::pair<Function*, double> > FunctionCounts;
159 std::vector<std::pair<BasicBlock*, double> > Counts;
162 double w = ignoreMissing(PI.getExecutionCount(FI));
166 double w = ignoreMissing(PI.getExecutionCount(BB));
175 double TotalExecutions = 0;
229 << format("%5g", Counts[i].second/(double)TotalExecutions*100) << "% "