Symbol: gmonhdr
lib/libc/gmon/gmon.c
139
p->outbuflen = sizeof(struct gmonhdr) + p->kcountsize +
lib/libc/gmon/gmon.c
151
p->kcount = (void *)(a + sizeof(struct gmonhdr));
lib/libc/gmon/gmon.c
152
p->rawarcs = (void *)(a + sizeof(struct gmonhdr) + p->kcountsize);
lib/libc/gmon/gmon.c
349
struct gmonhdr *hdr;
lib/libc/gmon/gmon.c
388
hdr = (struct gmonhdr *)p->outbuf;
sys/kern/subr_prof.c
344
upp->pr_base = (caddr_t)SCARG(uap, buf) + sizeof(struct gmonhdr);
sys/kern/subr_prof.c
389
struct gmonhdr hdr;
usr.bin/gprof/gprof.c
275
struct gmonhdr tmp;
usr.bin/gprof/gprof.c
282
if (fread(&tmp, sizeof(struct gmonhdr), 1, pfile) != 1)
usr.bin/gprof/gprof.c
284
if ( s_highpc != 0 && ( tmp.lpc != gmonhdr.lpc ||
usr.bin/gprof/gprof.c
285
tmp.hpc != gmonhdr.hpc || tmp.ncnt != gmonhdr.ncnt))
usr.bin/gprof/gprof.c
287
gmonhdr = tmp;
usr.bin/gprof/gprof.c
288
if ( gmonhdr.version == GMONVERSION ) {
usr.bin/gprof/gprof.c
289
rate = gmonhdr.profrate;
usr.bin/gprof/gprof.c
290
size = sizeof(struct gmonhdr);
usr.bin/gprof/gprof.c
294
gmonhdr.profrate = rate = hertz();
usr.bin/gprof/gprof.c
295
gmonhdr.version = GMONVERSION;
usr.bin/gprof/gprof.c
302
s_lowpc = (unsigned long) gmonhdr.lpc;
usr.bin/gprof/gprof.c
303
s_highpc = (unsigned long) gmonhdr.hpc;
usr.bin/gprof/gprof.c
304
lowpc = (unsigned long)gmonhdr.lpc / sizeof(UNIT);
usr.bin/gprof/gprof.c
305
highpc = (unsigned long)gmonhdr.hpc / sizeof(UNIT);
usr.bin/gprof/gprof.c
306
sampbytes = gmonhdr.ncnt - size;
usr.bin/gprof/gprof.c
311
gmonhdr.lpc , gmonhdr.hpc , gmonhdr.ncnt );
usr.bin/gprof/gprof.c
365
if ( fwrite( &gmonhdr , sizeof gmonhdr , 1 , sfile ) != 1 )
usr.bin/gprof/gprof.c
37
static struct gmonhdr gmonhdr;
usr.sbin/kgmon/kgmon.c
310
struct gmonhdr h;