Home | History | Annotate | Download | only in contrib

Lines Matching defs:branches

43 # HEURISTICS                           BRANCHES  (REL)  HITRATE                COVERAGE  (REL)
60 # prediction pass and it predicts 55.2% branches correctly. As you can,
149 def branches(self):
168 return 100.0 * self.successfull_branches() / self.branches()
195 (self.name, self.branches(),
196 percentage(self.branches(), branches_max),
245 return max([v.branches() for k, v in self.heuristics.items()])
254 sorter = lambda x: x.branches()
265 ('HEURISTICS', 'BRANCHES', '(REL)',
267 'predict.def', '(REL)', 'HOT branches (>%d%%)' % hot_threshold))
304 choices = ['branches', 'branch-hitrate', 'hitrate', 'coverage', 'name'],
305 default = 'branches')