Home | History | Annotate | Download | only in runtime

Lines Matching defs:low

31   CHARTYPE *low;
53 int i, low, high, mid;
61 if (table->low == NULL && table->high == NULL)
71 /* Try the high and low bounds if present. */
73 if (table->low == NULL)
89 if (compare_string (t->low_len, t->low, selector_len, selector) <= 0)
100 low = -1;
103 while (low + 1 < high)
105 mid = (low + high) / 2;
108 i = compare_string (t->low_len, t->low, selector_len, selector);
114 low = mid;
119 /* The string now lies between the low indeces of the now-adjacent
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
123 'low'. */
125 if (low == -1)
128 t = table + low;