Lines Matching refs:highpc
47 static histogram *find_histogram (bfd_vma lowpc, bfd_vma highpc);
100 || gmon_io_read_vma (ifp, &record->highpc) in read_histogram_header()
112 n_hist_scale = (double)((record->highpc - record->lowpc) / sizeof (UNIT)) in read_histogram_header()
171 bfd_vma lowpc, highpc; in hist_read_rec() local
180 existing_record = find_histogram (n_record.lowpc, n_record.highpc); in hist_read_rec()
190 highpc = n_record.highpc; in hist_read_rec()
191 hist_clip_symbol_address (&lowpc, &highpc); in hist_read_rec()
192 if (lowpc != highpc) in hist_read_rec()
220 (unsigned long) record->lowpc, (unsigned long) record->highpc, in hist_read_rec()
237 + i * (record->highpc - record->lowpc) in hist_read_rec()
261 || gmon_io_write_vma (ofp, record->highpc) in hist_write_hist()
675 if (histograms[i].lowpc <= address && address < histograms[i].highpc) in hist_check_address()
704 common_high = min (histograms[i].highpc, *p_highpc); in hist_clip_symbol_address()
731 find_histogram (bfd_vma lowpc, bfd_vma highpc) in find_histogram() argument
736 if (histograms[i].lowpc == lowpc && histograms[i].highpc == highpc) in find_histogram()
750 if (histograms[i].lowpc <= pc && pc < histograms[i].highpc) in find_histogram_for_pc()