ctype_digit        38 ext/ctype/ctype.c static PHP_FUNCTION(ctype_digit);
ctype_digit       101 ext/ctype/ctype.c 	PHP_FE(ctype_digit,	arginfo_ctype_digit)
ctype_digit       207 ext/ctype/ctype.c static PHP_FUNCTION(ctype_digit)
ctype_digit       179 ext/pcre/pcrelib/dftables.c   ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word,
ctype_digit      3518 ext/pcre/pcrelib/pcre_compile.c       if (chr < 256 && (cd->ctypes[chr] & ctype_digit) != 0) return FALSE;
ctype_digit      3522 ext/pcre/pcrelib/pcre_compile.c       if (chr > 255 || (cd->ctypes[chr] & ctype_digit) == 0) return FALSE;
ctype_digit      2356 ext/pcre/pcrelib/pcre_exec.c        (md->ctypes[c] & ctype_digit) != 0
ctype_digit      2373 ext/pcre/pcrelib/pcre_exec.c        (md->ctypes[c] & ctype_digit) == 0
ctype_digit      4532 ext/pcre/pcrelib/pcre_exec.c           if (c < 128 && (md->ctypes[c] & ctype_digit) != 0)
ctype_digit      4547 ext/pcre/pcrelib/pcre_exec.c           if (cc >= 128 || (md->ctypes[cc] & ctype_digit) == 0)
ctype_digit      4794 ext/pcre/pcrelib/pcre_exec.c           if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0)
ctype_digit      4808 ext/pcre/pcrelib/pcre_exec.c           if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0)
ctype_digit      5226 ext/pcre/pcrelib/pcre_exec.c             if (c < 256 && (md->ctypes[c] & ctype_digit) != 0)
ctype_digit      5231 ext/pcre/pcrelib/pcre_exec.c             if (c >= 256 || (md->ctypes[c] & ctype_digit) == 0)
ctype_digit      5367 ext/pcre/pcrelib/pcre_exec.c             if (MAX_255(c) && (md->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH);
ctype_digit      5371 ext/pcre/pcrelib/pcre_exec.c             if (!MAX_255(c) || (md->ctypes[c] & ctype_digit) == 0) RRETURN(MATCH_NOMATCH);
ctype_digit      5844 ext/pcre/pcrelib/pcre_exec.c             if (c < 256 && (md->ctypes[c] & ctype_digit) != 0) break;
ctype_digit      5859 ext/pcre/pcrelib/pcre_exec.c             if (c >= 256 ||(md->ctypes[c] & ctype_digit) == 0) break;
ctype_digit      6098 ext/pcre/pcrelib/pcre_exec.c             if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) break;
ctype_digit      6111 ext/pcre/pcrelib/pcre_exec.c             if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0) break;
ctype_digit      5331 ext/pcre/pcrelib/pcre_jit_compile.c   OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_digit);
ctype_digit       138 ext/pcre/pcrelib/pcre_maketables.c   if (isdigit(i)) x += ctype_digit;