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

/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.cpp887 // If we couldn't find it it just may mean that heap wasn't parseable
1022 double mean = 0.0, variance = 0.0, t; local
1034 // calculate mean and variance of the random sequence
1035 mean += u;
1038 mean /= reps;
1042 tty->print_cr("mean of the 1st 10000 numbers: %f", mean);
1045 t = fabsd(mean - 0.5018);
1046 assert(t < eps, "bad mean");

Completed in 319 milliseconds