Searched defs:Histogram (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Dhistogram.hpp48 // To use it, you need to declare a Histogram*, and a subtype of
62 // MyHistogram = new Histogram("My Call Counts",100);
76 // To print the results, invoke print() on your Histogram*.
94 class Histogram : public CHeapObj<mtInternal> { class in inherits:CHeapObj
105 Histogram(const char* title,int estimatedSize);
H A Dhistogram.cpp64 ////////////////// Histogram ////////////////////////
66 int Histogram::sort_helper(HistogramElement** e1, HistogramElement** e2) {
70 Histogram::Histogram(const char* title,int estimatedCount) { function in class:Histogram
75 void Histogram::add_element(HistogramElement* element) {
80 void Histogram::print_header(outputStream* st) {
85 void Histogram::print_elements(outputStream* st) {
86 elements()->sort(Histogram::sort_helper);
96 void Histogram::print_on(outputStream* st) const {
97 ((Histogram*)thi
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DHistogram.java34 * Histogram derived from an integer array of events (int[]).
37 final class Histogram { class
54 Histogram(int[] valueSequence) { method in class:Histogram
64 Histogram(int[] valueSequence, int start, int end) { method in class:Histogram
70 Histogram(int[][] matrix) { method in class:Histogram
99 /** Histogram of int values, reported compactly as a ragged matrix,
191 return Histogram.this.getBitLength(value);
559 Histogram makeByteHistogram(InputStream bytes) throws IOException {
573 return new Histogram(matrix);
734 Histogram makeByteHistogra
[all...]

Completed in 4905 milliseconds