Home
last modified time | relevance | path

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

/titanic_44/usr/src/cmd/sgs/gprof/common/
H A Dgprof.h105 typedef long long actype; typedef
142 actype raw_count;
161 actype arc_count; /* how calls from parent to child */
240 actype ncall; /* how many times called */
241 actype selfcalls; /* how many calls to self */
360 void addarc(nltype *, nltype *, actype);
H A Dprintgprof.c719 actype thiscalls = this->ncall + this->selfcalls; in membercmp()
720 actype thatcalls = that->ncall + that->selfcalls; in membercmp()
H A Dgprof.c1364 arc.raw_count = (actype)rtld_arc64.cg_count; in readarcs()
1384 arc.raw_count = (actype)rtld_arc.cg_count; in readarcs()
1404 arc.raw_count = (actype)arc32.raw_count; in readarcs()
H A Darcs.c37 addarc(nltype *parentp, nltype *childp, actype count) in addarc()