ctype_digit       101 ctype/ctype.c  	PHP_FE(ctype_digit,	arginfo_ctype_digit)
ctype_digit       166 pcre/pcrelib/dftables.c   ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word,
ctype_digit      3148 pcre/pcrelib/pcre_compile.c   return next > 255 || (cd->ctypes[next] & ctype_digit) == 0;
ctype_digit      3151 pcre/pcrelib/pcre_compile.c   return next <= 255 && (cd->ctypes[next] & ctype_digit) != 0;
ctype_digit      3241 pcre/pcrelib/pcre_compile.c     return c > 255 || (cd->ctypes[c] & ctype_digit) == 0;
ctype_digit      3244 pcre/pcrelib/pcre_compile.c     return c <= 255 && (cd->ctypes[c] & ctype_digit) != 0;
ctype_digit      6765 pcre/pcrelib/pcre_compile.c             if ((cd->ctypes[*p] & ctype_digit) == 0) is_a_number = FALSE;
ctype_digit      2314 pcre/pcrelib/pcre_exec.c        (md->ctypes[c] & ctype_digit) != 0
ctype_digit      2331 pcre/pcrelib/pcre_exec.c        (md->ctypes[c] & ctype_digit) == 0
ctype_digit      4449 pcre/pcrelib/pcre_exec.c           if (c < 128 && (md->ctypes[c] & ctype_digit) != 0)
ctype_digit      4462 pcre/pcrelib/pcre_exec.c           if (*eptr >= 128 || (md->ctypes[*eptr] & ctype_digit) == 0)
ctype_digit      4745 pcre/pcrelib/pcre_exec.c           if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0)
ctype_digit      4759 pcre/pcrelib/pcre_exec.c           if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0)
ctype_digit      5184 pcre/pcrelib/pcre_exec.c             if (c < 256 && (md->ctypes[c] & ctype_digit) != 0)
ctype_digit      5189 pcre/pcrelib/pcre_exec.c             if (c >= 256 || (md->ctypes[c] & ctype_digit) == 0)
ctype_digit      5369 pcre/pcrelib/pcre_exec.c             if (MAX_255(c) && (md->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH);
ctype_digit      5373 pcre/pcrelib/pcre_exec.c             if (!MAX_255(c) || (md->ctypes[c] & ctype_digit) == 0) RRETURN(MATCH_NOMATCH);
ctype_digit      5832 pcre/pcrelib/pcre_exec.c             if (c < 256 && (md->ctypes[c] & ctype_digit) != 0) break;
ctype_digit      5847 pcre/pcrelib/pcre_exec.c             if (c >= 256 ||(md->ctypes[c] & ctype_digit) == 0) break;
ctype_digit      6081 pcre/pcrelib/pcre_exec.c             if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) break;
ctype_digit      6094 pcre/pcrelib/pcre_exec.c             if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0) break;
ctype_digit       130 pcre/pcrelib/pcre_maketables.c   if (isdigit(i)) x += ctype_digit;