Lines Matching refs:val
107 } val[3]; // low, high, default - range of allowed values
208 if (l < opt->val[0].l) help_exit("-%c < %ld", opt->c, opt->val[0].l);
209 if (l > opt->val[1].l) help_exit("-%c > %ld", opt->c, opt->val[1].l);
216 if (opt->val[0].l != LONG_MIN && *f < opt->val[0].f)
217 help_exit("-%c < %lf", opt->c, (double)opt->val[0].f);
218 if (opt->val[1].l != LONG_MAX && *f > opt->val[1].f)
219 help_exit("-%c > %lf", opt->c, (double)opt->val[1].f);
267 new->val[0].l = LONG_MIN;
268 new->val[1].l = LONG_MAX;
305 if (temp != options) new->val[idx].l = l;
308 if (temp != options) new->val[idx].f = f;
337 *(nextarg++) = new->val[2].l;