Searched refs:MAX_255 (Results 1 – 6 of 6) sorted by relevance
71 #undef MAX_255210 #define MAX_255(c) TRUE macro218 #define MAX_255(c) ((c) <= 255u) macro221 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
2340 prev_is_word = MAX_255(eptr[-1]) in match()2366 cur_is_word = MAX_255(*eptr) in match()4886 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_digit) != 0) in match()4900 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_digit) == 0) in match()4914 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_space) != 0) in match()4928 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_space) == 0) in match()4942 if (MAX_255(*eptr) && (mb->ctypes[*eptr] & ctype_word) != 0) in match()4956 if (!MAX_255(*eptr) || (mb->ctypes[*eptr] & ctype_word) == 0) in match()5459 if (MAX_255(c) && (mb->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH); in match()5463 if (!MAX_255(c) || (mb->ctypes[c] & ctype_digit) == 0) RRETURN(MATCH_NOMATCH); in match()[all …]
72 #define XDIGIT(c) (MAX_255(c)? xdigitab[c] : 0xff)2360 else if (MAX_255(c) && (cb->ctypes[c] & ctype_letter) != 0) in get_ucp()3063 while (MAX_255(x) && (cb->ctypes[x] & ctype_space) != 0) x = *(++ptr); in process_verb_name()3177 while (MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype) != 0) \3280 while (MAX_255(c) && (cb->ctypes[c] & ctype_space) != 0) c = *(++ptr); in scan_for_captures()3435 while (MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) != 0) ptr++; in scan_for_captures()3675 if (MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) == 0) in scan_for_captures()4090 while (MAX_255(c) && (cb->ctypes[c] & ctype_space) != 0) c = *(++ptr); in compile_branch()5121 while (MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_space) != 0) ptr++; in compile_branch()5883 || (MAX_255(ptr[1]) && ((cb->ctypes[ptr[1]] & ctype_letter) != 0)))) in compile_branch()[all …]
483 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
765 else if (MAX_255(c)) SET_BIT(re->tables[fcc_offset + c]); in set_table_bit()
2621 return MAX_255(c) ? common->fcc[c] != c : FALSE; in char_has_othercase()