Home | History | Annotate | Download | only in gcc

Lines Matching defs:count2

1029    COUNT2/ALL respectively within roundoff error).  This generates the
1037 gcov_type count1, gcov_type count2, gcov_type all)
1097 bb3->count = profile_count::from_gcov_type (all - count1 - count2);
1137 gcov_type count1, count2;
1166 count2 = histogram->hvalue.counters[1];
1174 if (flag_profile_correction && count1 + count2 > all)
1175 all = count1 + count2;
1177 gcc_assert (count1 + count2 <= all);
1201 prob2 = profile_probability::probability_in_gcov_type (count2, all);
1210 result = gimple_mod_subtract (stmt, prob1, prob2, i, count1, count2, all);