Home
last modified time | relevance | path

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

/external/pcre/dist2/src/
Dpcre2_maketables.c142 if (isdigit(i)) x += ctype_digit;
Ddftables.c189 ctype_space, ctype_letter, ctype_lcletter, ctype_digit, ctype_word); in main()
Dpcre2_match.c2172 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match()
2184 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match()
2920 if (fc < 128 && (mb->ctypes[fc] & ctype_digit) != 0) in match()
2935 if (cc >= 128 || (mb->ctypes[cc] & ctype_digit) == 0) in match()
3186 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_digit) != 0) in match()
3200 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_digit) == 0) in match()
3617 if (fc < 256 && (mb->ctypes[fc] & ctype_digit) != 0) in match()
3622 if (fc >= 256 || (mb->ctypes[fc] & ctype_digit) == 0) in match()
3761 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match()
3766 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match()
[all …]
Dpcre2_auto_possess.c961 if (chr < 256 && (cb->ctypes[chr] & ctype_digit) != 0) return FALSE; in compare_opcodes()
965 if (chr > 255 || (cb->ctypes[chr] & ctype_digit) == 0) return FALSE; in compare_opcodes()
Dpcre2_dfa_match.c271 ctype_digit, ctype_digit,
279 ctype_digit, 0,
Dpcre2_internal.h581 #define ctype_digit 0x08 macro
Dpcre2_jit_compile.c8628 OP2(SLJIT_AND | SLJIT_SET_Z, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_digit); in compile_char1_matchingpath()