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()6100 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) break; in match()6126 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0) break; in match()[all …]
1051 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()1052 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0 in check_escape()1053 && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0 in check_escape()1054 && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0) in check_escape()1303 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0 in check_escape()1304 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0) in check_escape()1340 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) in check_escape()5614 while (MAX_255(*p) && (cd->ctypes[*p] & ctype_space) != 0) p++; in compile_branch()6761 if (!MAX_255(*ptr) || (cd->ctypes[*ptr] & ctype_word) == 0) in compile_branch()6767 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) in compile_branch()[all …]
269 #define MAX_255(c) 1 macro283 #define MAX_255(c) ((c) <= 255u) macro284 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))291 #define MAX_255(c) ((c) <= 255u) macro292 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
2368 return MAX_255(c) ? common->fcc[c] != c : FALSE; in char_has_othercase()
Completed in 62 milliseconds