Searched refs:MAX_255 (Results 1 – 4 of 4) sorted by relevance
2266 prev_is_word = MAX_255(eptr[-1]) in match()2290 cur_is_word = MAX_255(*eptr) in match()4796 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) in match()4810 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0) in match()4824 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0) in match()4838 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_space) == 0) in match()4852 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_word) != 0) in match()4866 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_word) == 0) in match()5369 if (MAX_255(c) && (md->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH); in match()5373 if (!MAX_255(c) || (md->ctypes[c] & ctype_digit) == 0) RRETURN(MATCH_NOMATCH); in match()[all …]
1034 else if (c < CHAR_a || (!MAX_255(c) || (ebcdic_chartab[c] & 0x0E) == 0)) {} in check_escape()1061 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()1062 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0 in check_escape()1063 && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0 in check_escape()1064 && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0) in check_escape()1313 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()1314 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0) in check_escape()1350 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) in check_escape()1378 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) ptr++; in check_escape()1400 while (i++ < 2 && MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0) in check_escape()[all …]
265 #define MAX_255(c) 1 macro279 #define MAX_255(c) ((c) <= 255u) macro280 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))287 #define MAX_255(c) ((c) <= 255u) macro288 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
2392 return MAX_255(c) ? common->fcc[c] != c : FALSE; in char_has_othercase()