HomeSort by relevance Sort by last modified time
    Searched refs:counters (Results 26 - 50 of 330) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/darwin-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/gcov-src/
libgcov.c 81 void __gcov_merge_add (gcov_type *counters __attribute__ ((unused)),
86 void __gcov_merge_single (gcov_type *counters __attribute__ ((unused)),
91 void __gcov_merge_delta (gcov_type *counters __attribute__ ((unused)),
156 /* Pointer to the direct-call counters (per call-site counters).
163 /* Pointer to the indirect-call counters (per call-site counters).
467 /* Sort the profile counters for all indirect call sites. Counters
468 for each call site are allocated in array COUNTERS. *
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/gcov-src/
libgcov.c 81 void __gcov_merge_add (gcov_type *counters __attribute__ ((unused)),
86 void __gcov_merge_single (gcov_type *counters __attribute__ ((unused)),
91 void __gcov_merge_delta (gcov_type *counters __attribute__ ((unused)),
156 /* Pointer to the direct-call counters (per call-site counters).
163 /* Pointer to the indirect-call counters (per call-site counters).
467 /* Sort the profile counters for all indirect call sites. Counters
468 for each call site are allocated in array COUNTERS. *
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/gcov-src/
libgcov.c 81 void __gcov_merge_add (gcov_type *counters __attribute__ ((unused)),
86 void __gcov_merge_single (gcov_type *counters __attribute__ ((unused)),
91 void __gcov_merge_delta (gcov_type *counters __attribute__ ((unused)),
156 /* Pointer to the direct-call counters (per call-site counters).
163 /* Pointer to the indirect-call counters (per call-site counters).
467 /* Sort the profile counters for all indirect call sites. Counters
468 for each call site are allocated in array COUNTERS. *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/gcov-src/
libgcov.c 81 void __gcov_merge_add (gcov_type *counters __attribute__ ((unused)),
86 void __gcov_merge_single (gcov_type *counters __attribute__ ((unused)),
91 void __gcov_merge_delta (gcov_type *counters __attribute__ ((unused)),
156 /* Pointer to the direct-call counters (per call-site counters).
163 /* Pointer to the indirect-call counters (per call-site counters).
467 /* Sort the profile counters for all indirect call sites. Counters
468 for each call site are allocated in array COUNTERS. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/gcov-src/
libgcov.c 81 void __gcov_merge_add (gcov_type *counters __attribute__ ((unused)),
86 void __gcov_merge_single (gcov_type *counters __attribute__ ((unused)),
91 void __gcov_merge_delta (gcov_type *counters __attribute__ ((unused)),
156 /* Pointer to the direct-call counters (per call-site counters).
163 /* Pointer to the indirect-call counters (per call-site counters).
467 /* Sort the profile counters for all indirect call sites. Counters
468 for each call site are allocated in array COUNTERS. *
    [all...]
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.6/lib/gcc/mipsel-linux-android/4.6/gcov-src/
libgcov.c 81 void __gcov_merge_add (gcov_type *counters __attribute__ ((unused)),
86 void __gcov_merge_single (gcov_type *counters __attribute__ ((unused)),
91 void __gcov_merge_delta (gcov_type *counters __attribute__ ((unused)),
156 /* Pointer to the direct-call counters (per call-site counters).
163 /* Pointer to the indirect-call counters (per call-site counters).
467 /* Sort the profile counters for all indirect call sites. Counters
468 for each call site are allocated in array COUNTERS. *
    [all...]
  /prebuilts/gcc/linux-x86/x86/i686-linux-android-4.6/lib/gcc/i686-linux-android/4.6/gcov-src/
libgcov.c 81 void __gcov_merge_add (gcov_type *counters __attribute__ ((unused)),
86 void __gcov_merge_single (gcov_type *counters __attribute__ ((unused)),
91 void __gcov_merge_delta (gcov_type *counters __attribute__ ((unused)),
156 /* Pointer to the direct-call counters (per call-site counters).
163 /* Pointer to the indirect-call counters (per call-site counters).
467 /* Sort the profile counters for all indirect call sites. Counters
468 for each call site are allocated in array COUNTERS. *
    [all...]
  /external/oprofile/module/x86/
op_nmi.c 168 printk(KERN_ERR "oprofile: no counters have been enabled.\n");
193 struct op_msr_group * counters = &cpu_msrs[cpu].counters; local
196 counters->addrs = NULL;
197 counters->saved = NULL;
201 counters->addrs = kmalloc(nr_ctrs * sizeof(uint), GFP_KERNEL);
202 if (!counters->addrs)
205 counters->saved = kmalloc(
207 if (!counters->saved)
222 rdmsr(counters->addrs[i]
246 struct op_msr_group * counters = &cpu_msrs[cpu].counters; local
    [all...]
op_model_athlon.c 20 #define CTR_READ(l, h, msrs, c) do {rdmsr(msrs->counters.addrs[(c)], (l), (h));} while (0)
21 #define CTR_WRITE(l, msrs, c) do {wrmsr(msrs->counters.addrs[(c)], -(u32)(l), 0xffff);} while (0)
38 msrs->counters.addrs[0] = MSR_K7_PERFCTR0;
39 msrs->counters.addrs[1] = MSR_K7_PERFCTR1;
40 msrs->counters.addrs[2] = MSR_K7_PERFCTR2;
41 msrs->counters.addrs[3] = MSR_K7_PERFCTR3;
55 /* clear all counters */
66 /* enable active counters */
op_x86_model.h 27 struct op_msr_group counters; member in struct:op_msrs
op_model_ppro.c 20 #define CTR_READ(l, h, msrs, c) do {rdmsr(msrs->counters.addrs[(c)], (l), (h));} while (0)
21 #define CTR_WRITE(l, msrs, c) do {wrmsr(msrs->counters.addrs[(c)], -(u32)(l), -1);} while (0)
38 msrs->counters.addrs[0] = MSR_P6_PERFCTR0;
39 msrs->counters.addrs[1] = MSR_P6_PERFCTR1;
51 /* clear all counters */
62 /* enable active counters */
  /external/linux-tools-perf/util/
values.h 10 int counters; member in struct:perf_read_values
values.c 22 die("failed to allocate read_values counters arrays");
23 values->counters = 0;
38 for (i = 0; i < values->counters; i++)
73 die("failed to allocate read_values counters array");
88 die("failed to enlarge read_values counters arrays");
94 die("failed to enlarge read_values counters arrays");
103 for (i = 0; i < values->counters; i++)
107 if (values->counters == values->counters_max)
110 i = values->counters++;
136 counterwidth = malloc(values->counters * sizeof(*counterwidth))
    [all...]
  /external/netperf/
netcpu_kstat10.c 57 print_cpu_time_counters(char *name, int instance, cpu_time_counters_t *counters)
61 "\t idle %llu\n",counters[instance].idle);
63 "\t user %llu\n",counters[instance].user);
65 "\t kernel %llu\n",counters[instance].kernel);
67 "\t interrupt %llu\n",counters[instance].interrupt);
120 get_cpu_counters(int cpu_num, cpu_time_counters_t *counters)
144 counters[cpu_num].idle = knp->value.ui64;
148 counters[cpu_num].user = knp->value.ui64;
152 counters[cpu_num].kernel = knp->value.ui64;
179 "get_cpu_counters could not find one or more of the expected counters!\n")
    [all...]
  /external/kernel-headers/original/linux/
percpu_counter.h 20 s32 *counters; member in struct:percpu_counter
33 fbc->counters = alloc_percpu(s32);
38 free_percpu(fbc->counters);
  /external/iptables/include/
ip6tables.h 16 void print_rule6(const struct ip6t_entry *e, struct ip6tc_handle *h, const char *chain, int counters);
iptables.h 19 struct iptc_handle *handle, const char *chain, int counters);
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
complex_rep.S 5 # Performance counters give us 8207 insns
  /external/valgrind/main/exp-bbv/tests/x86/
complex_rep.S 5 # Performance counters give us 8207 insns
  /external/wpa_supplicant_8/src/radius/
radius_server.c 39 * struct radius_server_counters - RADIUS server statistics counters
89 struct radius_server_counters counters; member in struct:radius_client
245 * counters - Statistics counters for server operations
247 * These counters are the sum over all clients.
249 struct radius_server_counters counters; member in struct:radius_server_data
670 data->counters.access_rejects++;
671 client->counters.access_rejects++;
736 data->counters.dup_access_requests++;
737 client->counters.dup_access_requests++
    [all...]
  /external/chromium/chrome/browser/sync/sessions/
session_state_unittest.cc 70 ErrorCounters counters; local
71 counters.num_conflicting_commits = 1;
72 counters.consecutive_transient_error_commits = 5;
73 counters.consecutive_errors = 3;
75 scoped_ptr<DictionaryValue> value(counters.ToValue());
77 ExpectIntegerValue(counters.num_conflicting_commits,
79 ExpectIntegerValue(counters.consecutive_transient_error_commits,
81 ExpectIntegerValue(counters.consecutive_errors,
  /external/iproute2/include/libiptc/
libip6tc.h 53 struct ip6t_counters *counters,
99 /* Zeroes the counters in a chain. */
119 struct ip6t_counters *counters,
126 /* read packet and byte counters for a specific rule */
131 /* zero packet and byte counters for a specific rule */
136 /* set packet and byte counters for a specific rule */
139 struct ip6t_counters *counters,
  /external/iptables/include/libiptc/
libip6tc.h 53 struct ip6t_counters *counters,
105 /* Zeroes the counters in a chain. */
125 struct ip6t_counters *counters,
132 /* read packet and byte counters for a specific rule */
137 /* zero packet and byte counters for a specific rule */
142 /* set packet and byte counters for a specific rule */
145 struct ip6t_counters *counters,
  /external/oprofile/module/ia64/
op_pmu.c 20 /* number of counters physically present */
23 /* performance counters are in pairs: pmcN and pmdN. The pmc register acts
50 * pmc0 is a bit mask for overflowed counters (bits 4-7)
466 printk(KERN_ERR "oprofile: no counters have been enabled.\n");
492 struct op_msr_group * counters = &cpu_msrs[cpu].counters; local
495 counters->addrs = NULL;
496 counters->saved = NULL;
500 counters->saved = kmalloc(
502 if (!counters->saved
526 struct op_msr_group * counters = &cpu_msrs[cpu].counters; local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_stoptheworld_test.cc 98 volatile int counters[kThreadCount]; member in struct:__sanitizer::AdvancedCallbackArgument
131 __sync_fetch_and_add(&callback_argument->counters[this_thread_index], 1);
149 counters_at_init[j] = __sync_fetch_and_add(&callback_argument->counters[j],
154 if (__sync_fetch_and_add(&callback_argument->counters[j], 0) !=

Completed in 1748 milliseconds

12 3 4 5 6 7 8 91011>>