Searched refs:Histogram (Results 1 - 12 of 12) sorted by relevance

/openjdk9/hotspot/src/share/vm/utilities/
H A Dhistogram.cpp65 ////////////////// Histogram ////////////////////////
67 int Histogram::sort_helper(HistogramElement** e1, HistogramElement** e2) {
71 Histogram::Histogram(const char* title,int estimatedCount) { function in class:Histogram
76 void Histogram::add_element(HistogramElement* element) {
81 void Histogram::print_header(outputStream* st) {
86 void Histogram::print_elements(outputStream* st) {
87 elements()->sort(Histogram::sort_helper);
97 void Histogram::print_on(outputStream* st) const {
98 ((Histogram*)thi
[all...]
H A Dhistogram.hpp36 // To use it, you need to declare a Histogram*, and a subtype of
50 // MyHistogram = new Histogram("My Call Counts",100);
64 // To print the results, invoke print() on your Histogram*.
82 class Histogram : public CHeapObj<mtInternal> { class in inherits:CHeapObj
93 Histogram(const char* title,int estimatedSize);
/openjdk9/jdk/src/java.desktop/share/classes/sun/java2d/marlin/
H A DRendererStats.java36 import sun.java2d.marlin.stats.Histogram;
137 final Histogram hist_rdr_edges_count
138 = new Histogram("renderer.edges.count");
139 final Histogram hist_rdr_poly_stack_curves
140 = new Histogram("renderer.polystack.curves");
141 final Histogram hist_rdr_crossings
142 = new Histogram("renderer.crossings");
143 final Histogram hist_rdr_crossings_ratio
144 = new Histogram("renderer.crossings.ratio");
145 final Histogram hist_rdr_crossings_add
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/sun/java2d/marlin/stats/
H A DHistogram.java31 public final class Histogram extends StatLong { class in inherits:StatLong
45 // System.out.println("Histogram.STEPS = " + Arrays.toString(STEPS));
59 public Histogram(final String name) { method in class:Histogram
/openjdk9/hotspot/src/share/vm/runtime/
H A DinterfaceSupport.cpp47 Histogram* RuntimeHistogram;
65 RuntimeHistogram = new Histogram("VM Runtime Call Counts",200);
H A Djava.cpp169 tty->print_cr("Histogram Over MethodOop Invocation Counters (cutoff = " INTX_FORMAT "):", MethodHistogramCutoff);
216 extern Histogram *RuntimeHistogram;
221 extern Histogram *JNIHistogram;
226 extern Histogram *JVMHistogram;
/openjdk9/jdk/src/java.base/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...]
H A DCodingChooser.java198 private Histogram vHist;
199 private Histogram dHist;
478 Histogram hist = getHistogram(c.coding.isDelta());
611 Histogram getValueHistogram() {
613 vHist = new Histogram(values, start, end);
622 Histogram getDeltaHistogram() {
624 dHist = new Histogram(getDeltas(0, 0));
633 Histogram getHistogram(boolean isDelta) {
639 Histogram hist = getValueHistogram();
1230 Histogram his
[all...]
H A DPopulationCoding.java44 Histogram vHist; // histogram of all values
70 public void setHistogram(Histogram vHist) {
H A DCoding.java40 class Coding implements Comparable<Coding>, CodingMethod, Histogram.BitMetric {
/openjdk9/hotspot/src/share/vm/prims/
H A Djvm.cpp217 Histogram* JVMHistogram;
240 JVMHistogram = new Histogram("JVM Call Counts",100);
H A Djni.cpp265 Histogram* JNIHistogram;
289 JNIHistogram = new Histogram("JNI Call Counts",100);

Completed in 150 milliseconds