Searched refs:MAX_255 (Results 1 - 4 of 4) sorted by relevance

/forgerock/web-agents-v4/pcre/
H A Dpcre_internal.h254 The MAX_255 macro checks whether its pcre_uchar input is less than 256.
265 #define MAX_255(c) 1 macro
279 #define MAX_255(c) ((c) <= 255u) macro
280 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
287 #define MAX_255(c) ((c) <= 255u) macro
288 #define TABLE_GET(c, table, default) (MAX_255(c)? ((table)[c]):(default))
H A Dpcre_compile.c1028 else if (c < CHAR_a || (!MAX_255(c) || (ebcdic_chartab[c] & 0x0E) == 0)) {}
1055 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0
1056 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0
1057 && MAX_255(ptr[3]) && (digitab[ptr[3]] & ctype_xdigit) != 0
1058 && MAX_255(ptr[4]) && (digitab[ptr[4]] & ctype_xdigit) != 0)
1307 if (MAX_255(ptr[1]) && (digitab[ptr[1]] & ctype_xdigit) != 0
1308 && MAX_255(ptr[2]) && (digitab[ptr[2]] & ctype_xdigit) != 0)
1344 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0)
1372 while (MAX_255(*ptr) && (digitab[*ptr] & ctype_xdigit) != 0) ptr++;
1394 while (i++ < 2 && MAX_255(pt
[all...]
H A Dpcre_exec.c2259 prev_is_word = MAX_255(eptr[-1])
2283 cur_is_word = MAX_255(*eptr)
4789 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0)
4803 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0)
4817 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_space) != 0)
4831 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_space) == 0)
4845 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_word) != 0)
4859 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_word) == 0)
5362 if (MAX_255(c) && (md->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH);
5366 if (!MAX_255(
[all...]
H A Dpcre_jit_compile.c2341 return MAX_255(c) ? common->fcc[c] != c : FALSE;

Completed in 202 milliseconds