Home | History | Annotate | Download | only in gprof

Lines Matching defs:histograms

51 histogram * histograms;
152 /* The only reason we require the same scale for histograms is that
203 histograms = (struct histogram *)
204 xrealloc (histograms, sizeof (histogram) * (num_histograms + 1));
205 memcpy (histograms + num_histograms,
207 record = &histograms[num_histograms];
245 /* Write all execution histograms file OFP. FILENAME is the name
256 histogram *record = &histograms[r];
456 hist_assign_samples_1 (&histograms[i]);
676 if (histograms[i].lowpc <= address && address < histograms[i].highpc)
704 common_low = max (histograms[i].lowpc, *p_lowpc);
705 common_high = min (histograms[i].highpc, *p_highpc);
737 if (histograms[i].lowpc == lowpc && histograms[i].highpc == highpc)
738 return &histograms[i];
751 if (histograms[i].lowpc <= pc && pc < histograms[i].highpc)
752 return &histograms[i];