Searched defs:IntHistogram (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A DintHisto.hpp50 class IntHistogram : public CHeapObj<mtInternal> { class in inherits:CHeapObj
60 IntHistogram(int est, int max);
H A DintHisto.cpp28 IntHistogram::IntHistogram(int est, int max) : _max(max), _tot(0) { function in class:IntHistogram
34 void IntHistogram::add_entry(int outcome) {
41 int IntHistogram::entries_for_outcome(int outcome) {
45 void IntHistogram::print_on(outputStream* st) const {

Completed in 39 milliseconds