HomeSort by: relevance | last modified time | path
    Searched defs:counters (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/net/
net_stats.c 45 u_int ctx_ncounters; /* number of counters in array */
66 * that are gathered per-CPU. Statistics counters are assumed
74 uint64_t *counters; local
80 counters = kmem_zalloc(countersize, KM_SLEEP);
81 ctx.ctx_counters = counters;
88 node.sysctl_data = counters;
92 kmem_free(counters, countersize);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_stoptheworld_test.cc 99 volatile int counters[kThreadCount]; member in struct:__sanitizer::AdvancedCallbackArgument
132 __sync_fetch_and_add(&callback_argument->counters[this_thread_index], 1);
150 counters_at_init[j] = __sync_fetch_and_add(&callback_argument->counters[j],
155 if (__sync_fetch_and_add(&callback_argument->counters[j], 0) !=
  /src/sys/dev/ic/
intersil7170reg.h 62 struct intersil_dt counters; member in struct:intersil7170
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/arch-x86/
pmu.h 34 uint32_t counters; member in struct:xen_pmu_amd_ctxt
  /src/sys/dev/tprof/
tprof.c 353 * Unconfigured counters are ignored.
438 /* All counters have stopped? */
582 /* update counters bitmasks */
591 /* counters with less than 64bits also require overflow handling */
607 uint64_t *counters = arg2; local
616 counters[c] = counters_offset[c] +
620 counters[c] = 0;
  /src/usr.sbin/tprof/
tprof_top.c 119 static uint64_t *counters; /* counters[2][ncpu][nevent] */ variable
591 size_t sz = 2 * ncpu * nevent * sizeof(*counters);
592 counters = ecalloc(1, sz);
603 cn[0] = counters;
604 cn[1] = counters + ncpu * nevent;
937 "counters can be used.", ncounters);
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_win.cc 760 PROCESS_MEMORY_COUNTERS counters; local
761 if (!GetProcessMemoryInfo(GetCurrentProcess(), &counters, sizeof(counters)))
763 return counters.WorkingSetSize;
  /src/sys/external/bsd/drm/dist/bsd-core/
drmP.h 667 /* (driver must alloc the right number of counters) */
794 /* Usage Counters */
798 /* Performance counters */
799 unsigned long counters; member in struct:drm_device
  /src/sys/netipsec/
key.c 847 * Utilities for percpu counters for sadb_lifetime_allocations and
8443 lifetime_counters_t *counters; local
8449 counters = percpu_getref(sav->lft_c_counters_percpu);
8455 (*counters)[LIFETIME_COUNTER_BYTES] += m->m_pkthdr.len;
8463 (*counters)[LIFETIME_COUNTER_ALLOCATIONS]++;
  /src/sys/dist/pf/net/
pfvar.h 1154 /* Counters for other things we want to keep track of */
1224 pf_status.counters[x]++; \
1230 pf_status.counters[x]++; \
1234 u_int64_t counters[PFRES_MAX]; member in struct:pf_status
1235 u_int64_t lcounters[LCNT_MAX]; /* limit counters */

Completed in 29 milliseconds