Lines Matching refs:threshold
79 bool next(double threshold) {80 ASSERT(threshold >= 0.0 && threshold <= 1.0);81 if (threshold == 1.0) return true;82 if (threshold == 0.0) return false;84 return threshold > static_cast<double>(value)/100000.0;