Symbol: ossl_isdigit
crypto/openssl/crypto/asn1/a_mbstr.c
310
if ((types & B_ASN1_NUMERICSTRING) && !(ossl_isdigit(native) || native == ' '))
crypto/openssl/crypto/asn1/a_object.c
97
if (!ossl_isdigit(c)) {
crypto/openssl/crypto/bio/bio_print.c
150
if (ossl_isdigit(ch)) {
crypto/openssl/crypto/bio/bio_print.c
168
if (ossl_isdigit(ch)) {
crypto/openssl/crypto/bn/bn_conv.c
210
for (i = 0; i <= INT_MAX / 4 && ossl_isdigit(a[i]); i++)
crypto/openssl/crypto/conf/conf_lib.c
323
return ossl_isdigit(c);
crypto/openssl/crypto/cpuid.c
52
if (ossl_isdigit(c))
crypto/openssl/crypto/objects/obj_dat.c
434
if (!ossl_isdigit(*s)) {
crypto/openssl/crypto/objects/obj_dat.c
742
while (ossl_isdigit(*s) || *s == '.')
crypto/openssl/crypto/property/property_parse.c
102
if (!ossl_isdigit(*s)) {
crypto/openssl/crypto/property/property_parse.c
114
} while (ossl_isdigit(*s));
crypto/openssl/crypto/property/property_parse.c
133
if (ossl_isdigit(*s)) {
crypto/openssl/crypto/property/property_parse.c
169
if (*s == '9' || *s == '8' || !ossl_isdigit(*s)) {
crypto/openssl/crypto/property/property_parse.c
181
} while (ossl_isdigit(*++s) && *s != '9' && *s != '8');
crypto/openssl/crypto/property/property_parse.c
275
} else if (*s == '0' && ossl_isdigit(s[1])) {
crypto/openssl/crypto/property/property_parse.c
278
} else if (ossl_isdigit(*s)) {
crypto/openssl/crypto/store/store_register.c
174
|| ossl_isdigit(*scheme)
crypto/openssl/crypto/x509/v3_utl.c
1189
if (!ossl_isdigit(**str)) {
crypto/openssl/engines/e_loader_attic.c
1484
if (!ossl_isdigit(*p))
crypto/openssl/include/crypto/ctype.h
64
int ossl_isdigit(int c);
crypto/openssl/providers/implementations/storemgmt/file_store.c
667
if (!ossl_isdigit((unsigned char)*p))
crypto/openssl/ssl/quic/qlog.c
528
return ossl_isalpha(c) || ossl_isdigit(c) || c == '_' || c == '-';
crypto/openssl/test/ctype_internal_test.c
42
&& TEST_int_eq(isdigit(n) != 0, ossl_isdigit(n) != 0)