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

  /src/sys/dev/tprof/
tprof_x86.c 59 int ncounters; local
74 ncounters = ops->tbo_ncounters();
75 if (ncounters == 0)
tprof_armv7.c 297 int error, ncounters; local
299 ncounters = armv7_pmu_ncounters();
300 if (ncounters == 0)
tprof_armv8.c 279 int error, ncounters; local
283 ncounters = armv8_pmu_ncounters();
284 if (ncounters == 0)
  /src/external/mpl/bind/dist/lib/isc/
stats.c 46 int ncounters; member in struct:isc_stats
70 isc_mem_cput(stats->mctx, stats->counters, stats->ncounters,
80 return stats->ncounters;
84 isc_stats_create(isc_mem_t *mctx, isc_stats_t **statsp, int ncounters) {
89 ncounters;
92 for (int i = 0; i < ncounters; i++) {
97 stats->ncounters = ncounters;
105 REQUIRE(counter < stats->ncounters);
113 REQUIRE(counter < stats->ncounters);
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/isc/
stats.c 44 int ncounters; member in struct:isc_stats
49 create_stats(isc_mem_t *mctx, int ncounters, isc_stats_t **statsp) {
56 counters_alloc_size = sizeof(isc__atomic_statcounter_t) * ncounters;
59 for (int i = 0; i < ncounters; i++) {
64 stats->ncounters = ncounters;
93 stats->ncounters);
102 return (stats->ncounters);
106 isc_stats_create(isc_mem_t *mctx, isc_stats_t **statsp, int ncounters) {
109 return (create_stats(mctx, ncounters, statsp))
    [all...]
  /src/usr.sbin/tprof/
tprof.c 89 u_int ncounters; variable
265 printf("%u events can be counted at the same time.\n", ncounters);
424 nevent > ncounters)
427 ncounters);
582 ret = ioctl(devfd, TPROF_IOC_GETNCOUNTERS, &ncounters);
586 if (ncounters == 0) {
  /src/external/mpl/bind/dist/lib/dns/
cache.c 583 int ncounters; /* for general statistics */ member in struct:cache_dumparg
593 REQUIRE(counter < dumparg->ncounters);
598 getcounters(isc_stats_t *stats, isc_statsformat_t type, int ncounters,
602 memset(values, 0, sizeof(values[0]) * ncounters);
605 dumparg.ncounters = ncounters;
  /src/external/gpl3/gcc/dist/gcc/
value-prof.cc 346 unsigned int ncounters = 0; local
364 ncounters = new_val->hdata.intvl.steps + 2;
369 ncounters = 2;
378 ncounters = 1;
389 gcov_type ncounters = streamer_read_gcov_count (ib); local
392 * (2 + 2 * ncounters));
394 new_val->hvalue.counters[1] = ncounters;
395 new_val->n_counters = 2 + 2 * ncounters;
396 for (i = 0; i < 2 * ncounters; i++)
403 * ncounters);
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
value-prof.cc 358 unsigned int ncounters = 0; local
376 ncounters = new_val->hdata.intvl.steps + 2;
381 ncounters = 2;
390 ncounters = 1;
401 gcov_type ncounters = streamer_read_gcov_count (ib); local
404 * (2 + 2 * ncounters));
406 new_val->hvalue.counters[1] = ncounters;
407 new_val->n_counters = 2 + 2 * ncounters;
408 for (i = 0; i < 2 * ncounters; i++)
415 * ncounters);
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/
cache.c 1293 int ncounters; /* for general statistics */ member in struct:cache_dumparg
1303 REQUIRE(counter < dumparg->ncounters);
1308 getcounters(isc_stats_t *stats, isc_statsformat_t type, int ncounters,
1312 memset(values, 0, sizeof(values[0]) * ncounters);
1315 dumparg.ncounters = ncounters;
  /src/sys/external/bsd/drm2/dist/include/uapi/drm/
vc4_drm.h 418 __u32 ncounters; member in struct:drm_vc4_perfmon_create
428 * perfmon (as an array of ncounters u64 values).
  /src/external/mpl/bind/dist/bin/named/
statschannel.c 88 int ncounters; /* for general statistics */ member in struct:stats_dumparg
786 const char **desc, int ncounters, int *indices, uint64_t *values,
793 REQUIRE(counter < dumparg->ncounters);
799 const char *category, const char **desc, int ncounters, int *indices,
804 dumparg.ncounters = ncounters;
808 memset(values, 0, sizeof(values[0]) * ncounters);
811 return dump_counters(type, arg, category, desc, ncounters, indices,
818 const char *category, const char **desc, int ncounters, int *indices,
823 for (int i = 0; i < ncounters; i++)
    [all...]

Completed in 21 milliseconds