Lines Matching refs:tmp
390 struct hdr tmp; in gmon_out_read() local
409 if (gmon_io_read_vma (ifp, &tmp.low_pc) in gmon_out_read()
410 || gmon_io_read_vma (ifp, &tmp.high_pc) in gmon_out_read()
411 || gmon_io_read_32 (ifp, &tmp.ncnt)) in gmon_out_read()
481 samp_bytes = tmp.ncnt - header_size; in gmon_out_read()
483 if (histograms && (tmp.low_pc != histograms->lowpc in gmon_out_read()
484 || tmp.high_pc != histograms->highpc in gmon_out_read()
496 histograms->lowpc = tmp.low_pc; in gmon_out_read()
497 histograms->highpc = tmp.high_pc; in gmon_out_read()
499 hist_scale = (double)((tmp.high_pc - tmp.low_pc) / sizeof (UNIT)) in gmon_out_read()
508 (unsigned long) tmp.low_pc, (unsigned long) tmp.high_pc, in gmon_out_read()
509 tmp.ncnt); in gmon_out_read()