Home | History | Annotate | Download | only in gprof

Lines Matching defs:highpc

48 static histogram *find_histogram (bfd_vma lowpc, bfd_vma highpc);
101 || gmon_io_read_vma (ifp, &record->highpc)
113 n_hist_scale = (double)((record->highpc - record->lowpc) / sizeof (UNIT))
172 bfd_vma lowpc, highpc;
181 existing_record = find_histogram (n_record.lowpc, n_record.highpc);
191 highpc = n_record.highpc;
192 hist_clip_symbol_address (&lowpc, &highpc);
193 if (lowpc != highpc)
221 (unsigned long) record->lowpc, (unsigned long) record->highpc,
238 + i * (record->highpc - record->lowpc)
262 || gmon_io_write_vma (ofp, record->highpc)
676 if (histograms[i].lowpc <= address && address < histograms[i].highpc)
705 common_high = min (histograms[i].highpc, *p_highpc);
729 highpc as passed via the parameters. Return NULL if nothing is found.
732 find_histogram (bfd_vma lowpc, bfd_vma highpc)
737 if (histograms[i].lowpc == lowpc && histograms[i].highpc == highpc)
751 if (histograms[i].lowpc <= pc && pc < histograms[i].highpc)