Searched refs:HISTCOUNTER (Results 1 - 6 of 6) sorted by relevance

/freebsd-9.3-release/sys/sys/
H A Dgmon.h47 int histcounter_type; /* size (in bits) and sign of HISTCOUNTER */
56 #define HISTCOUNTER int64_t macro
58 #define HISTCOUNTER unsigned short macro
68 #define HISTFRACTION (FUNCTION_ALIGNMENT / sizeof(HISTCOUNTER) == 0 \
69 ? 1 : FUNCTION_ALIGNMENT / sizeof(HISTCOUNTER))
157 HISTCOUNTER *kcount;
169 HISTCOUNTER *cputime_count;
171 HISTCOUNTER *mcount_count;
175 HISTCOUNTER *mexitcount_count;
204 ((p)->kcount[(index) / (HISTFRACTION * sizeof(HISTCOUNTER))])
[all...]
/freebsd-9.3-release/contrib/gcc/config/i386/
H A Dgmon-sol2.c78 #define HISTCOUNTER unsigned short macro
134 ROUNDDOWN((unsigned long)lowpc, HISTFRACTION*sizeof(HISTCOUNTER));
137 ROUNDUP((unsigned long)highpc, HISTFRACTION*sizeof(HISTCOUNTER));
/freebsd-9.3-release/contrib/gcc/config/sparc/
H A Dgmon-sol2.c50 #define HISTCOUNTER unsigned short macro
106 ROUNDDOWN((unsigned long)lowpc, HISTFRACTION*sizeof(HISTCOUNTER));
109 ROUNDUP((unsigned long)highpc, HISTFRACTION*sizeof(HISTCOUNTER));
/freebsd-9.3-release/sys/kern/
H A Dsubr_prof.c92 np.highpc = ROUNDUP(nhighpc, HISTFRACTION * sizeof(HISTCOUNTER));
116 np.kcount = (HISTCOUNTER *)cp;
160 p->lowpc = ROUNDDOWN((u_long)btext, HISTFRACTION * sizeof(HISTCOUNTER));
161 p->highpc = ROUNDUP((u_long)etext, HISTFRACTION * sizeof(HISTCOUNTER));
178 p->kcount = (HISTCOUNTER *)cp;
243 tmp_addr += HISTFRACTION * sizeof(HISTCOUNTER))
/freebsd-9.3-release/usr.sbin/pmcstat/
H A Dpmcpl_gprof.c129 gm.ncnt = (pgf->pgf_nbuckets * sizeof(HISTCOUNTER)) +
402 HISTCOUNTER *hc;
451 pgf->pgf_nbuckets * sizeof(HISTCOUNTER);
477 hc = (HISTCOUNTER *) ((uintptr_t) pgf->pgf_gmondata +
481 if (hc[bucket] < 0xFFFFU) /* XXX tie this to sizeof(HISTCOUNTER) */
/freebsd-9.3-release/lib/libc/gmon/
H A Dgmon.c85 p->lowpc = ROUNDDOWN(lowpc, HISTFRACTION * sizeof(HISTCOUNTER));
86 p->highpc = ROUNDUP(highpc, HISTFRACTION * sizeof(HISTCOUNTER));

Completed in 168 milliseconds