Home | History | Annotate | Download | only in runtime

Lines Matching defs:high

33   CHARTYPE *high;
53 int i, low, high, mid;
61 if (table->low == NULL && table->high == NULL)
71 /* Try the high and low bounds if present. */
75 if (compare_string (table->high_len, table->high,
87 if (t->high == NULL)
101 high = table_len;
103 while (low + 1 < high)
105 mid = (low + high) / 2;
116 high = mid;
120 high and low entries. Because it is less than the low entry of
121 'high', it can't be that one. If low is still -1, then no
122 entries match. Otherwise, we have to check the high entry of
129 if (compare_string (selector_len, selector, t->high_len, t->high) <= 0)