low               433 src/entry.c    get_list(bitstr_t * bits, int low, int high, const char *names[],
low               449 src/entry.c    	bit_nclear(bits, 0, (high - low));
low               455 src/entry.c    		if (EOF == (ch = get_range(bits, low, high, names, ch, file)))
low               475 src/entry.c    get_range(bitstr_t * bits, int low, int high, const char *names[],
low               487 src/entry.c    		num1 = low;
low               494 src/entry.c    		ch = get_number(&num1, low, names, ch, file, ",- \t\n");
low               501 src/entry.c    			if (EOF == set_element(bits, low, high, num1)) {
low               516 src/entry.c    			ch = get_number(&num2, low, names, ch, file, "/, \t\n");
low               552 src/entry.c    		if (EOF == set_element(bits, low, high, i)) {
low               561 src/entry.c    get_number(int *numptr, int low, const char *names[], int ch, FILE * file,
low               599 src/entry.c    					*numptr = i + low;
low               611 src/entry.c    static int set_element(bitstr_t * bits, int low, int high, int number) {
low               612 src/entry.c    	Debug(DPARS | DEXT, ("set_element(?,%d,%d,%d)\n", low, high, number));
low               614 src/entry.c    		if (number < low || number > high)
low               617 src/entry.c    	bit_set(bits, (number - low));