Lines Matching defs:high
430 get_list(bitstr_t *bits, int low, int high, const char *names[],
446 bit_nclear(bits, 0, high - low);
452 if ((ch = get_range(bits, low, high, names, ch, file)) == EOF)
470 get_range(bitstr_t *bits, int low, int high, const char *names[],
481 num2 = high;
485 /* '*' means [low, high] but can still be modified by /step
492 ch = get_number(&num1, low, high, names, ch, file, ",-~ \t\n");
507 ch = get_number(&num2, low, high, names, ch, file, "/, \t\n");
520 ch = get_number(&num2, low, high, names, ch, file, "/, \t\n");
537 if (num1 < low || num2 > high)
555 if (set_element(bits, low, high, num1) == EOF) {
566 const int max_step = high + 1 - low;
585 * and the difference between high and low values.
600 if (set_range(bits, low, high, num1, num2, num3) == EOF) {
609 get_number(int *numptr, int low, int high, const char *names[], int ch,
632 i = strtonum(temp, low, high, &errstr);
664 set_element(bitstr_t *bits, int low, int high, int number)
667 if (number < low || number > high)
676 set_range(bitstr_t *bits, int low, int high, int start, int stop, int step)
680 if (start < low || stop > high)