Home
last modified time | relevance | path

Searched refs:actype (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dgprof.h103 typedef long long actype; typedef
140 actype raw_count;
159 actype arc_count; /* how calls from parent to child */
236 actype ncall; /* how many times called */
237 actype selfcalls; /* how many calls to self */
356 void addarc(nltype *, nltype *, actype);
H A Dprintgprof.c726 actype thiscalls = this->ncall + this->selfcalls; in membercmp()
727 actype thatcalls = that->ncall + that->selfcalls; in membercmp()
H A Dgprof.c1401 arc.raw_count = (actype)rtld_arc64.cg_count; in readarcs()
1421 arc.raw_count = (actype)rtld_arc.cg_count; in readarcs()
1441 arc.raw_count = (actype)arc32.raw_count; in readarcs()
H A Darcs.c40 addarc(nltype *parentp, nltype *childp, actype count) in addarc()