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

/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_maketables.c140 if (isdigit(i)) x += ctype_digit;
H A Dpcre_exec.c2358 (md->ctypes[c] & ctype_digit) != 0
2375 (md->ctypes[c] & ctype_digit) == 0
4534 if (c < 128 && (md->ctypes[c] & ctype_digit) != 0)
4549 if (cc >= 128 || (md->ctypes[cc] & ctype_digit) == 0)
4796 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0)
4810 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0)
5228 if (c < 256 && (md->ctypes[c] & ctype_digit) != 0)
5233 if (c >= 256 || (md->ctypes[c] & ctype_digit) == 0)
5369 if (MAX_255(c) && (md->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH);
5373 if (!MAX_255(c) || (md->ctypes[c] & ctype_digit)
[all...]
H A Dpcre_dfa_exec.c264 ctype_digit, ctype_digit,
272 ctype_digit, 0,
H A Dpcre_compile.c580 Then we can use ctype_digit and ctype_xdigit in the code. */
3523 if (chr < 256 && (cd->ctypes[chr] & ctype_digit) != 0) return FALSE;
3527 if (chr > 255 || (cd->ctypes[chr] & ctype_digit) == 0) return FALSE;

Completed in 233 milliseconds