Searched refs:outcome (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A DintHisto.hpp34 // assumed (required in this implementation) to have an outcome that is a
36 // to the number of measurements had that outcome.
57 // Create a new, empty table. "est" is an estimate of the maximum outcome
58 // that will be added, and "max" is an outcome such that all outcomes at
61 // Add a measurement with the given outcome to the sequence.
62 void add_entry(int outcome);
63 // Return the number of entries recorded so far with the given outcome.
64 int entries_for_outcome(int outcome);
67 // Return the number of entries recorded so far with the given outcome as
69 double fraction_for_outcome(int outcome) { argument
[all...]
H A DintHisto.cpp34 void IntHistogram::add_entry(int outcome) { argument
35 if (outcome > _max) outcome = _max;
36 int new_count = _elements->at_grow(outcome) + 1;
37 _elements->at_put(outcome, new_count);
41 int IntHistogram::entries_for_outcome(int outcome) { argument
42 return _elements->at_grow(outcome);
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DFutureTask.java80 * transient values of COMPLETING (while outcome is being set) or
104 private Object outcome; // non-volatile, protected by state reads/writes field in class:FutureTask
117 Object x = outcome;
227 outcome = v;
245 outcome = t;

Completed in 30 milliseconds