Lines Matching defs:lowpc
48 static histogram *find_histogram (bfd_vma lowpc, bfd_vma highpc);
100 if (gmon_io_read_vma (ifp, &record->lowpc)
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);
190 lowpc = n_record.lowpc;
192 hist_clip_symbol_address (&lowpc, &highpc);
193 if (lowpc != highpc)
221 (unsigned long) record->lowpc, (unsigned long) record->highpc,
237 (unsigned long) (record->lowpc
238 + i * (record->highpc - record->lowpc)
261 || gmon_io_write_vma (ofp, record->lowpc)
307 bin_of_entry = (sym->hist.scaled_addr - r->lowpc) / hist_scale;
308 bin_of_code = ((sym->hist.scaled_addr + UNITS_TO_CODE - r->lowpc)
371 bfd_vma lowpc = r->lowpc / sizeof (UNIT);
380 bin_low_pc = lowpc + (bfd_vma) (hist_scale * i);
381 bin_high_pc = lowpc + (bfd_vma) (hist_scale * (i + 1));
676 if (histograms[i].lowpc <= address && address < histograms[i].highpc)
704 common_low = max (histograms[i].lowpc, *p_lowpc);
728 /* Find and return exising histogram record having the same lowpc and
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)