Searched refs:estimate (Results 1 - 7 of 7) sorted by relevance

/openjdk9/hotspot/src/share/vm/gc/g1/
H A Dg1Predictions.hpp35 // This function is used to estimate the stddev of sample sets. There is some
42 double estimate = seq->dsd(); local
45 estimate = MAX2(seq->davg() * (5 - samples) / 2.0, estimate);
47 return estimate;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/
H A DSPARCLIRInstructionMixin.java32 return getSPARCLIRInstructionStore().estimate;
39 * pessimistic estimate of emitted SPARC instructions and emitted bytes into the constant
85 public final SizeEstimate estimate; field in class:SPARCLIRInstructionMixin.SPARCLIRInstructionMixinStore
88 public SPARCLIRInstructionMixinStore(SizeEstimate estimate) { argument
89 this.estimate = estimate;
94 return estimate != null ? estimate.toString() : "";
/openjdk9/jdk/test/java/util/function/BiFunction/
H A DBiFunctionTest.java55 BiFunction<Quote, Order, Double> estimate = (quote, order) -> { field in class:BiFunctionTest
76 BiFunction<Quote, Order, Long> checkout = estimate.andThen(null);
82 BiFunction<Quote, Order, Long> checkout = estimate.andThen(creditcheck);
/openjdk9/jdk/src/demo/share/java2d/J2DBench/src/j2dbench/
H A DTest.java176 int estimate = (int) (numReps * testTime / (now - startTime));
177 if (estimate <= numReps) {
178 estimate = numReps+1;
180 runTest(ctx, estimate - numReps);
181 numReps = estimate;
186 // Now make one last estimate of how many reps it takes to
188 int estimate = (int) (numReps * testTime / (now - startTime));
189 if (estimate < 1) {
190 estimate = 1;
192 return estimate;
[all...]
/openjdk9/jdk/test/java/lang/StackWalker/
H A DBasic.java55 * For a stack of a given depth, it creates a StackWalker with an estimate.
61 for (int estimate : estimates) {
62 test.walk(estimate);
86 void walk(int estimate) { argument
89 System.out.format("depth=%d estimate=%d expected=%d walked=%d%n",
90 depth, estimate, limit, frames.size());
/openjdk9/jdk/src/java.base/share/classes/java/util/stream/
H A DStreamSpliterators.java221 // Use the estimate of the wrapped spliterator
245 // with an exact size to an estimate for a sub-split, for example
247 // but for sub-splits only an estimate is known
642 // thereby ensuring the size estimate decreases.
1325 * estimate size is 0.
1332 long estimate; field in class:StreamSpliterators.InfiniteSupplyingSpliterator
1334 protected InfiniteSupplyingSpliterator(long estimate) { argument
1335 this.estimate = estimate;
1340 return estimate;
[all...]
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/doubleconv/
H A DBignumDtoa.java415 final double estimate = Math.ceil((exponent + kSignificandSize - 1) * k1Log10 - 1e-10);
416 return (int) estimate;

Completed in 59 milliseconds