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.c189 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word); in main()
Dpcre2_match.c2171 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match()
2183 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match()
2919 if (fc < 128 && (mb->ctypes[fc] & ctype_digit) != 0) in match()
2934 if (cc >= 128 || (mb->ctypes[cc] & ctype_digit) == 0) in match()
3185 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_digit) != 0) in match()
3199 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_digit) == 0) in match()
3616 if (fc < 256 && (mb->ctypes[fc] & ctype_digit) != 0) in match()
3621 if (fc >= 256 || (mb->ctypes[fc] & ctype_digit) == 0) in match()
3760 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match()
3765 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match()
[all …]
Dpcre2_auto_possess.c953 if (chr < 256 && (cb->ctypes[chr] & ctype_digit) != 0) return FALSE; in compare_opcodes()
957 if (chr > 255 || (cb->ctypes[chr] & ctype_digit) == 0) return FALSE; in compare_opcodes()
Dpcre2_dfa_match.c268 ctype_digit, ctype_digit,
276 ctype_digit, 0,
Dpcre2_internal.h574 #define ctype_digit 0x04 macro
Dpcre2_jit_compile.c7364 OP2(SLJIT_AND | SLJIT_SET_Z, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_digit); in compile_char1_matchingpath()