| /dragonfly/contrib/gcc-8.0/libgcc/ |
| HD | libgcov-profiler.c | 47 __gcov_interval_profiler (gcov_type *counters, gcov_type value, in __gcov_interval_profiler() argument 52 counters[steps + 1]++; in __gcov_interval_profiler() 54 counters[steps]++; in __gcov_interval_profiler() 56 counters[delta]++; in __gcov_interval_profiler() 67 __gcov_interval_profiler_atomic (gcov_type *counters, gcov_type value, in __gcov_interval_profiler_atomic() argument 72 __atomic_fetch_add (&counters[steps + 1], 1, __ATOMIC_RELAXED); in __gcov_interval_profiler_atomic() 74 __atomic_fetch_add (&counters[steps], 1, __ATOMIC_RELAXED); in __gcov_interval_profiler_atomic() 76 __atomic_fetch_add (&counters[delta], 1, __ATOMIC_RELAXED); in __gcov_interval_profiler_atomic() 85 __gcov_pow2_profiler (gcov_type *counters, gcov_type value) in __gcov_pow2_profiler() argument 88 counters[0]++; in __gcov_pow2_profiler() [all …]
|
| HD | libgcov-merge.c | 32 void __gcov_merge_add (gcov_type *counters __attribute__ ((unused)), in __gcov_merge_add() argument 37 void __gcov_merge_single (gcov_type *counters __attribute__ ((unused)), in __gcov_merge_single() argument 48 __gcov_merge_add (gcov_type *counters, unsigned n_counters) in __gcov_merge_add() argument 50 for (; n_counters; counters++, n_counters--) in __gcov_merge_add() 51 *counters += gcov_get_counter (); in __gcov_merge_add() 60 __gcov_merge_ior (gcov_type *counters, unsigned n_counters) in __gcov_merge_ior() argument 62 for (; n_counters; counters++, n_counters--) in __gcov_merge_ior() 63 *counters |= gcov_get_counter_target (); in __gcov_merge_ior() 72 __gcov_merge_time_profile (gcov_type *counters, unsigned n_counters) in __gcov_merge_time_profile() argument 81 if (value && (!counters[i] || value < counters[i])) in __gcov_merge_time_profile() [all …]
|
| HD | libgcov-driver.c | 707 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/ |
| HD | libgcov.c | 55 void __gcov_merge_add (gcov_type *counters __attribute__ ((unused)), in __gcov_merge_add() argument 60 void __gcov_merge_single (gcov_type *counters __attribute__ ((unused)), in __gcov_merge_single() argument 65 void __gcov_merge_delta (gcov_type *counters __attribute__ ((unused)), in __gcov_merge_delta() argument 749 __gcov_merge_add (gcov_type *counters, unsigned n_counters) in __gcov_merge_add() argument 751 for (; n_counters; counters++, n_counters--) in __gcov_merge_add() 752 *counters += gcov_read_counter (); in __gcov_merge_add() 761 __gcov_merge_ior (gcov_type *counters, unsigned n_counters) in __gcov_merge_ior() argument 763 for (; n_counters; counters++, n_counters--) in __gcov_merge_ior() 764 *counters |= gcov_read_counter (); in __gcov_merge_ior() 779 __gcov_merge_single (gcov_type *counters, unsigned n_counters) in __gcov_merge_single() argument [all …]
|
| /dragonfly/contrib/gcc-8.0/gcc/ |
| HD | value-prof.c | 204 free (hist->hvalue.counters); in gimple_remove_histogram_value() 236 if (hist->hvalue.counters) in dump_histogram_value() 243 (int64_t) hist->hvalue.counters[i]); in dump_histogram_value() 245 (int64_t) hist->hvalue.counters[i]); in dump_histogram_value() 252 if (hist->hvalue.counters) in dump_histogram_value() 256 (int64_t) hist->hvalue.counters[1], in dump_histogram_value() 257 (int64_t) hist->hvalue.counters[0]); in dump_histogram_value() 264 if (hist->hvalue.counters) in dump_histogram_value() 269 (int64_t) hist->hvalue.counters[0], in dump_histogram_value() 270 (int64_t) hist->hvalue.counters[1], in dump_histogram_value() [all …]
|
| HD | gcov-counter.def | 1 /* Definitions for the gcov counters in the GNU compiler. 24 This macro will be expanded to all supported gcov counters, their
|
| HD | ipa-profile.c | 203 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()
|
| HD | value-prof.h | 53 gcov_type *counters; /* Pointer to first counter. */ member
|
| HD | auto-profile.c | 1006 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()
|
| HD | profile.c | 892 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()
|
| HD | coverage.c | 792 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/ |
| HD | radius_server.c | 117 struct radius_server_counters counters; member 318 struct radius_server_counters counters; member 1449 data->counters.access_rejects++; in radius_server_reject() 1450 client->counters.access_rejects++; in radius_server_reject() 1561 data->counters.dup_access_requests++; in radius_server_request() 1562 client->counters.dup_access_requests++; in radius_server_request() 1592 data->counters.packets_dropped++; in radius_server_request() 1593 client->counters.packets_dropped++; in radius_server_request() 1632 data->counters.packets_dropped++; in radius_server_request() 1633 client->counters.packets_dropped++; in radius_server_request() [all …]
|
| /dragonfly/contrib/gcc-4.7/gcc/ |
| HD | value-prof.c | 182 free (hist->hvalue.counters); in gimple_remove_histogram_value() 216 if (hist->hvalue.counters) in dump_histogram_value() 223 (HOST_WIDEST_INT) hist->hvalue.counters[i]); in dump_histogram_value() 225 (HOST_WIDEST_INT) hist->hvalue.counters[i]); in dump_histogram_value() 232 if (hist->hvalue.counters) in dump_histogram_value() 236 (HOST_WIDEST_INT) hist->hvalue.counters[0], in dump_histogram_value() 237 (HOST_WIDEST_INT) hist->hvalue.counters[1]); in dump_histogram_value() 244 if (hist->hvalue.counters) in dump_histogram_value() 249 (HOST_WIDEST_INT) hist->hvalue.counters[0], in dump_histogram_value() 250 (HOST_WIDEST_INT) hist->hvalue.counters[1], in dump_histogram_value() [all …]
|
| HD | value-prof.h | 52 gcov_type *counters; /* Pointer to first counter. */ member
|
| HD | coverage.c | 690 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()
|
| HD | profile.c | 867 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/ |
| HD | lzma_encoder_private.h | 48 uint32_t counters[POS_STATES_MAX]; member
|
| HD | lzma_encoder.c | 81 lc->counters[pos_state] = table_size; in length_update_prices() 133 if (--lc->counters[pos_state] == 0) in length()
|
| /dragonfly/sys/netgraph7/bluetooth/l2cap/ |
| HD | TODO | 28 5) Add bytes/packets counters and commands to get/reset them
|
| /dragonfly/sys/netgraph/ |
| HD | NOTES | 15 statistics & counters on various memory allocation
|
| /dragonfly/sys/netgraph7/ |
| HD | NOTES | 14 statistics & counters on various memory allocation
|
| /dragonfly/sys/dev/disk/dm/doc/ |
| HD | design.txt | 240 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/ |
| HD | FAQ | 247 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/ |
| HD | pf_ioctl.c | 1784 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/ |
| HD | c-i960.texi | 72 was @emph{not} taken; the difference between the two counters is the 79 the counters. This table is always labeled @samp{__BRANCH_TABLE__};
|