Lines Matching defs:highpc
47 static histogram *find_histogram (bfd_vma lowpc, bfd_vma highpc);
100 || gmon_io_read_vma (ifp, &record->highpc)
112 n_hist_scale = (double)(record->highpc - record->lowpc) / sizeof (UNIT)
171 bfd_vma lowpc, highpc;
180 existing_record = find_histogram (n_record.lowpc, n_record.highpc);
190 highpc = n_record.highpc;
191 hist_clip_symbol_address (&lowpc, &highpc);
192 if (lowpc != highpc)
220 (unsigned long) record->lowpc, (unsigned long) record->highpc,
237 + i * (record->highpc - record->lowpc)
261 || gmon_io_write_vma (ofp, record->highpc)
678 if (histograms[i].lowpc <= address && address < histograms[i].highpc)
707 common_high = min (histograms[i].highpc, *p_highpc);
731 highpc as passed via the parameters. Return NULL if nothing is found.
734 find_histogram (bfd_vma lowpc, bfd_vma highpc)
739 if (histograms[i].lowpc == lowpc && histograms[i].highpc == highpc)
753 if (histograms[i].lowpc <= pc && pc < histograms[i].highpc)