Home
last modified time | relevance | path

Searched refs:ctype_digit (Results 1 – 7 of 7) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_maketables.c141 if (isdigit(i)) x += ctype_digit;
Ddftables.c183 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
Dpcre2_match.c2436 (mb->ctypes[c] & ctype_digit) != 0 in match()
2453 (mb->ctypes[c] & ctype_digit) == 0 in match()
4624 if (c < 128 && (mb->ctypes[c] & ctype_digit) != 0) in match()
4639 if (cc >= 128 || (mb->ctypes[cc] & ctype_digit) == 0) 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()
5318 if (c < 256 && (mb->ctypes[c] & ctype_digit) != 0) in match()
5323 if (c >= 256 || (mb->ctypes[c] & ctype_digit) == 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 …]
Dpcre2_auto_possess.c921 if (chr < 256 && (cb->ctypes[chr] & ctype_digit) != 0) return FALSE; in compare_opcodes()
925 if (chr > 255 || (cb->ctypes[chr] & ctype_digit) == 0) return FALSE; in compare_opcodes()
Dpcre2_dfa_match.c266 ctype_digit, ctype_digit,
274 ctype_digit, 0,
Dpcre2_internal.h588 #define ctype_digit 0x04 macro
Dpcre2_jit_compile.c6276 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_digit); in compile_char1_matchingpath()