Symbol: ossl_toascii
crypto/openssl/crypto/chacha/chacha_enc.c
106
input[0] = ((u32)ossl_toascii('e')) | ((u32)ossl_toascii('x') << 8)
crypto/openssl/crypto/chacha/chacha_enc.c
107
| ((u32)ossl_toascii('p') << 16)
crypto/openssl/crypto/chacha/chacha_enc.c
108
| ((u32)ossl_toascii('a') << 24);
crypto/openssl/crypto/chacha/chacha_enc.c
109
input[1] = ((u32)ossl_toascii('n')) | ((u32)ossl_toascii('d') << 8)
crypto/openssl/crypto/chacha/chacha_enc.c
110
| ((u32)ossl_toascii(' ') << 16)
crypto/openssl/crypto/chacha/chacha_enc.c
111
| ((u32)ossl_toascii('3') << 24);
crypto/openssl/crypto/chacha/chacha_enc.c
112
input[2] = ((u32)ossl_toascii('2')) | ((u32)ossl_toascii('-') << 8)
crypto/openssl/crypto/chacha/chacha_enc.c
113
| ((u32)ossl_toascii('b') << 16)
crypto/openssl/crypto/chacha/chacha_enc.c
114
| ((u32)ossl_toascii('y') << 24);
crypto/openssl/crypto/chacha/chacha_enc.c
115
input[3] = ((u32)ossl_toascii('t')) | ((u32)ossl_toascii('e') << 8)
crypto/openssl/crypto/chacha/chacha_enc.c
116
| ((u32)ossl_toascii(' ') << 16)
crypto/openssl/crypto/chacha/chacha_enc.c
117
| ((u32)ossl_toascii('k') << 24);
crypto/openssl/crypto/ctype.c
255
const int a = ossl_toascii(c);
crypto/openssl/crypto/ctype.c
271
int a = ossl_toascii(c);
crypto/openssl/crypto/ctype.c
278
int a = ossl_toascii(c);
crypto/openssl/crypto/ctype.c
285
int a = ossl_toascii(c);
crypto/openssl/crypto/ctype.c
298
int a = ossl_toascii(c);
crypto/openssl/crypto/ctype.c
305
int a = ossl_toascii(c);
crypto/openssl/crypto/x509/x509_obj.c
109
else if ((ossl_toascii(q[j]) < ossl_toascii(' ')) || (ossl_toascii(q[j]) > ossl_toascii('~')))
crypto/openssl/include/crypto/ctype.h
53
int ossl_toascii(int c);