Searched refs:n_counters (Results 1 - 7 of 7) sorted by relevance

/haiku-buildtools/gcc/libgcc/
H A Dlibgcov-merge.c33 unsigned n_counters __attribute__ ((unused))) {}
38 unsigned n_counters __attribute__ ((unused))) {}
43 unsigned n_counters __attribute__ ((unused))) {}
53 __gcov_merge_add (gcov_type *counters, unsigned n_counters) argument
55 for (; n_counters; counters++, n_counters--)
65 __gcov_merge_ior (gcov_type *counters, unsigned n_counters) argument
67 for (; n_counters; counters++, n_counters--)
77 __gcov_merge_time_profile (gcov_type *counters, unsigned n_counters) argument
103 __gcov_merge_single(gcov_type *counters, unsigned n_counters) argument
142 __gcov_merge_delta(gcov_type *counters, unsigned n_counters) argument
176 __gcov_merge_icall_topn(gcov_type *counters, unsigned n_counters) argument
[all...]
H A Dlibgcov-util.c688 __gcov_add_counter_op (gcov_type *counters, unsigned n_counters, argument
691 for (; n_counters; counters++, n_counters--)
702 unsigned n_counters ATTRIBUTE_UNUSED,
714 unsigned n_counters ATTRIBUTE_UNUSED,
725 __gcov_delta_counter_op (gcov_type *counters, unsigned n_counters, argument
730 gcc_assert (!(n_counters % 4));
731 n_measures = n_counters / 4;
742 __gcov_single_counter_op (gcov_type *counters, unsigned n_counters, argument
747 gcc_assert (!(n_counters
759 __gcov_icall_topn_counter_op(gcov_type *counters, unsigned n_counters, counter_op_fn fn, void *data1, void *data2) argument
[all...]
/haiku-buildtools/gcc/gcc/
H A Dvalue-prof.h60 unsigned n_counters; /* Number of required counters. */
59 unsigned n_counters; /* Number of required counters. */ member in struct:histogram_value_t
H A Dvalue-prof.c433 for (i = 0; i < hist->n_counters; i++)
492 new_val->n_counters = ncounters;
536 new_val->hvalue.counters = XNEWVAR (gcov_type, sizeof (*new_val->hvalue.counters) * new_val->n_counters);
537 memcpy (new_val->hvalue.counters, val->hvalue.counters, sizeof (*new_val->hvalue.counters) * new_val->n_counters);
2110 hist->n_counters = hist->hdata.intvl.steps + 2;
2114 hist->n_counters = 2;
2118 hist->n_counters = 3;
2122 hist->n_counters = 4;
2126 hist->n_counters = 3;
2130 hist->n_counters
[all...]
H A Dprofile.c202 if (!coverage_counter_alloc (t, hist->n_counters))
913 n_histogram_counters[(int) hist->type] += hist->n_counters;
946 act_count[t] += hist->n_counters;
949 hist->hvalue.counters = XNEWVEC (gcov_type, hist->n_counters);
950 for (j = 0; j < hist->n_counters; j++)
H A Dcoverage.c1117 unsigned n_counters = 0;
1144 n_counters++;
1151 build_fn_info_type (gcov_fn_info_type, n_counters, gcov_info_type);
1113 unsigned n_counters = 0; local
H A Dauto-profile.c991 hist->n_counters = 3;
992 hist->hvalue.counters = XNEWVEC (gcov_type, hist->n_counters);

Completed in 97 milliseconds