Home | History | Annotate | Download | only in stress

Lines Matching full:delaymin

95 float delayMin = DEFAULT_DELAY_MIN;
144 delayMin = strtod(optarg, &chptr);
145 if ((*chptr != '\0') || (delayMin < 0.0)) {
241 if (delayMax < delayMin) {
243 testPrintE(" delayMin: %f delayMax: %f", delayMin, delayMax);
260 testPrintI("delayMin: %f", delayMin);
443 * by the file scope variables delayMin and delayMax. The
445 * range, with a bias towards values closer to delayMin.
449 * of delayMin.
461 // Values closer to delayMin are prefered by an amount
465 amt = delayMin + ((delayMax - delayMin) * biasedFract);