Lines Matching defs:value
245 /// Choose a default value for the -j (parallelism) flag.
1472 int value = strtol(optarg, &end, 10);
1473 if (*end != 0 || value < 0)
1478 config->parallelism = value > 0 ? value : INT_MAX;
1484 int value = strtol(optarg, &end, 10);
1491 config->failures_allowed = value > 0 ? value : INT_MAX;
1496 double value = strtod(optarg, &end);
1499 config->max_load_average = value;