Home
last modified time | relevance | path

Searched refs:counters (Results 1 – 25 of 45) sorted by relevance

12

/dragonfly/contrib/gcc-8.0/libgcc/
H A Dlibgcov-profiler.c52 counters[steps + 1]++; in __gcov_interval_profiler()
54 counters[steps]++; in __gcov_interval_profiler()
56 counters[delta]++; in __gcov_interval_profiler()
88 counters[0]++; in __gcov_pow2_profiler()
90 counters[1]++; in __gcov_pow2_profiler()
125 counters[1]++; in __gcov_one_value_profiler_body()
128 counters[1] = 1; in __gcov_one_value_profiler_body()
132 counters[1]--; in __gcov_one_value_profiler_body()
137 counters[2]++; in __gcov_one_value_profiler_body()
359 counters[1] ++; in __gcov_average_profiler()
[all …]
H A Dlibgcov-merge.c51 *counters += gcov_get_counter (); in __gcov_merge_add()
63 *counters |= gcov_get_counter_target (); in __gcov_merge_ior()
81 if (value && (!counters[i] || value < counters[i])) in __gcov_merge_time_profile()
82 counters[i] = value; in __gcov_merge_time_profile()
111 if (counters[0] == value) in __gcov_merge_single()
112 counters[1] += counter; in __gcov_merge_single()
113 else if (counter > counters[1]) in __gcov_merge_single()
115 counters[0] = value; in __gcov_merge_single()
116 counters[1] = counter - counters[1]; in __gcov_merge_single()
119 counters[1] -= counter; in __gcov_merge_single()
[all …]
H A Dlibgcov-driver.c707 gcov_sort_icall_topn_counter (const struct gcov_ctr_info *counters) in gcov_sort_icall_topn_counter() argument
711 int n = counters->num; in gcov_sort_icall_topn_counter()
714 values = counters->values; in gcov_sort_icall_topn_counter()
/dragonfly/contrib/gcc-4.7/libgcc/
H A Dlibgcov.c797 counters[1] = counter - counters[1]; in __gcov_merge_single()
837 counters[2] = counter - counters[2]; in __gcov_merge_delta()
860 counters[steps]++; in __gcov_interval_profiler()
862 counters[delta]++; in __gcov_interval_profiler()
874 counters[0]++; in __gcov_pow2_profiler()
876 counters[1]++; in __gcov_pow2_profiler()
894 counters[1]++; in __gcov_one_value_profiler_body()
901 counters[1]--; in __gcov_one_value_profiler_body()
902 counters[2]++; in __gcov_one_value_profiler_body()
956 counters[1] ++; in __gcov_average_profiler()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
H A Dvalue-prof.c204 free (hist->hvalue.counters); in gimple_remove_histogram_value()
236 if (hist->hvalue.counters) in dump_histogram_value()
252 if (hist->hvalue.counters) in dump_histogram_value()
264 if (hist->hvalue.counters) in dump_histogram_value()
278 if (hist->hvalue.counters) in dump_histogram_value()
290 if (hist->hvalue.counters) in dump_histogram_value()
300 if (hist->hvalue.counters) in dump_histogram_value()
313 if (hist->hvalue.counters) in dump_histogram_value()
322 if (hist->hvalue.counters) in dump_histogram_value()
473 …memcpy (new_val->hvalue.counters, val->hvalue.counters, sizeof (*new_val->hvalue.counters) * new_v… in gimple_duplicate_stmt_histograms()
[all …]
H A Dgcov-counter.def1 /* Definitions for the gcov counters in the GNU compiler.
24 This macro will be expanded to all supported gcov counters, their
H A Dipa-profile.c203 if (h->hvalue.counters[2]) in ipa_profile_generate_summary()
209 = h->hvalue.counters [0]; in ipa_profile_generate_summary()
211 = GCOV_COMPUTE_SCALE (h->hvalue.counters [1], h->hvalue.counters [2]); in ipa_profile_generate_summary()
H A Dvalue-prof.h53 gcov_type *counters; /* Pointer to first counter. */ member
H A Dauto-profile.c1006 hist->hvalue.counters = XNEWVEC (gcov_type, hist->n_counters); in afdo_indirect_call()
1020 hist->hvalue.counters[0] in afdo_indirect_call()
1022 hist->hvalue.counters[1] = max_iter->second; in afdo_indirect_call()
1023 hist->hvalue.counters[2] = total; in afdo_indirect_call()
1031 get_identifier ((const char *) hist->hvalue.counters[0])); in afdo_indirect_call()
H A Dprofile.c892 hist->hvalue.counters = XNEWVEC (gcov_type, hist->n_counters); in compute_value_histograms()
895 hist->hvalue.counters[j] = aact_count[j]; in compute_value_histograms()
897 hist->hvalue.counters[j] = 0; in compute_value_histograms()
905 node->tp_first_run = hist->hvalue.counters[0]; in compute_value_histograms()
H A Dcoverage.c792 build_fn_info_type (tree type, unsigned counters, tree gcov_info_type) in build_fn_info_type() argument
798 gcc_assert (counters); in build_fn_info_type()
837 array_type = build_index_type (size_int (counters - 1)); in build_fn_info_type()
/dragonfly/contrib/wpa_supplicant/src/radius/
H A Dradius_server.c1449 data->counters.access_rejects++; in radius_server_reject()
1450 client->counters.access_rejects++; in radius_server_reject()
1923 data->counters.unknown_types++; in radius_server_receive_auth()
1928 data->counters.access_requests++; in radius_server_receive_auth()
2040 data->counters.acct_requests++; in radius_server_receive_acct()
2041 client->counters.acct_requests++; in radius_server_receive_acct()
2068 data->counters.acct_responses++; in radius_server_receive_acct()
2625 data->counters.unknown_types, in radius_server_get_mib()
2626 data->counters.acct_requests, in radius_server_get_mib()
2683 cli->counters.unknown_types, in radius_server_get_mib()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/
H A Dvalue-prof.c182 free (hist->hvalue.counters); in gimple_remove_histogram_value()
216 if (hist->hvalue.counters) in dump_histogram_value()
232 if (hist->hvalue.counters) in dump_histogram_value()
244 if (hist->hvalue.counters) in dump_histogram_value()
258 if (hist->hvalue.counters) in dump_histogram_value()
270 if (hist->hvalue.counters) in dump_histogram_value()
280 if (hist->hvalue.counters) in dump_histogram_value()
293 if (hist->hvalue.counters) in dump_histogram_value()
340 …memcpy (new_val->hvalue.counters, val->hvalue.counters, sizeof (*new_val->hvalue.counters) * new_v… in gimple_duplicate_stmt_histograms()
430 free (hist->hvalue.counters); in free_hist()
[all …]
H A Dvalue-prof.h52 gcov_type *counters; /* Pointer to first counter. */ member
H A Dcoverage.c690 build_fn_info_type (tree type, unsigned counters, tree gcov_info_type) in build_fn_info_type() argument
696 gcc_assert (counters); in build_fn_info_type()
735 array_type = build_index_type (size_int (counters - 1)); in build_fn_info_type()
H A Dprofile.c867 hist->hvalue.counters = XNEWVEC (gcov_type, hist->n_counters); in compute_value_histograms()
869 hist->hvalue.counters[j] = aact_count[j]; in compute_value_histograms()
/dragonfly/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_private.h48 uint32_t counters[POS_STATES_MAX]; member
H A Dlzma_encoder.c81 lc->counters[pos_state] = table_size; in length_update_prices()
133 if (--lc->counters[pos_state] == 0) in length()
/dragonfly/sys/netgraph7/bluetooth/l2cap/
H A DTODO28 5) Add bytes/packets counters and commands to get/reset them
/dragonfly/sys/netgraph/
H A DNOTES15 statistics & counters on various memory allocation
/dragonfly/sys/netgraph7/
H A DNOTES14 statistics & counters on various memory allocation
/dragonfly/sys/dev/disk/dm/doc/
H A Ddesign.txt240 counters for all added pdevs (I remove pdevs with ref_cnt == 0).
312 uint32_t event_nr; /* event counters not implemented */
/dragonfly/contrib/zlib-1.2/
H A DFAQ247 strm.total_in and strm_total_out counters may be limited to 4 GB. These
248 counters are provided as a convenience and are not used internally by
249 inflate() or deflate(). The application can easily set up its own counters
/dragonfly/sys/net/pf/
H A Dpf_ioctl.c1784 s->counters[i] += pfc->counters[i]; in pfioctl()
1810 bzero(pf_status.counters, sizeof(pf_status.counters)); in pfioctl()
1814 bzero(pf_counters[i].counters, sizeof(pf_counters[0].counters)); in pfioctl()
/dragonfly/contrib/binutils-2.27/gas/doc/
H A Dc-i960.texi72 was @emph{not} taken; the difference between the two counters is the
79 the counters. This table is always labeled @samp{__BRANCH_TABLE__};

12