Home | History | Annotate | Download | only in gcc

Lines Matching defs:total_count

6551   profile_count total_count = profile_count::uninitialized ();
6611 total_count = entry->dest->count;
6615 if (entry_count > total_count)
6616 entry_count = total_count;
6621 if (total_count.initialized_p () && entry_count.initialized_p ())
6624 total_count - entry_count,
6625 total_count);
6627 total_count);
6715 profile_count total_count = profile_count::uninitialized (),
6760 total_count = exit->src->count;
6764 if (exit_count > total_count)
6765 exit_count = total_count;
6769 if (total_count.initialized_p () && exit_count.initialized_p ())
6772 total_count - exit_count,
6773 total_count);
6775 total_count);