Lines Matching refs:hi
333 show_cclass_range(int lo, int hi)
340 for (ch = lo + 1; ch <= hi; ch++) {
346 if (ident && (hi < 255)) {
347 ch = hi + 1;
356 if (lo == hi) {
359 printf("\t%d-%d", lo, hi);
363 if (hi < 255)
409 decode_range(const char *source, int *lo, int *hi)
416 if ((*hi = decode_one(after1, &after2)) < 0) {
417 *hi = *lo;
427 int lo, hi;
428 if (decode_range(source, &lo, &hi)) {
430 while (lo <= hi) {
437 while (lo <= hi) {
447 printf("\"charClass\" resource for [%d..%d]:\n", lo, hi);
448 report_resource(lo, hi + 1);