Symbol: ishex
crypto/openssl/apps/genpkey.c
115
const char *name = param_datatype_2name(params[i].data_type, &ishex);
crypto/openssl/apps/genpkey.c
118
BIO_printf(bio_err, " %s%s:%s\n", ishex ? "hex" : "", params[i].key, name);
crypto/openssl/apps/genpkey.c
74
static const char *param_datatype_2name(unsigned int type, int *ishex)
crypto/openssl/apps/genpkey.c
76
*ishex = 0;
crypto/openssl/apps/genpkey.c
86
*ishex = 1;
crypto/openssl/apps/genpkey.c
99
int i, ishex = 0;
crypto/openssl/crypto/evp/ctrl_params_translate.c
195
int ishex;
crypto/openssl/crypto/evp/ctrl_params_translate.c
2793
ctx.ishex = (tmpl.ctrl_hexstr != NULL);
crypto/openssl/crypto/evp/ctrl_params_translate.c
567
if (ctx->ishex) {
crypto/openssl/crypto/params_from_text.c
111
if (*ishex) {
crypto/openssl/crypto/params_from_text.c
118
if (*ishex) {
crypto/openssl/crypto/params_from_text.c
136
const char *value, size_t value_n, int ishex,
crypto/openssl/crypto/params_from_text.c
181
if (ishex) {
crypto/openssl/crypto/params_from_text.c
28
const OSSL_PARAM **paramdef, int *ishex,
crypto/openssl/crypto/params_from_text.c
312
int ishex = 0;
crypto/openssl/crypto/params_from_text.c
322
&paramdef, &ishex, &buf_n, &tmpbn, found))
crypto/openssl/crypto/params_from_text.c
328
ok = construct_from_text(to, paramdef, value, value_n, ishex,
crypto/openssl/crypto/params_from_text.c
39
*ishex = CHECK_AND_SKIP_PREFIX(key, "hex");
crypto/openssl/crypto/params_from_text.c
50
if (*ishex)
crypto/openssl/crypto/x509/v3_utl.c
200
int isneg, ishex;
crypto/openssl/crypto/x509/v3_utl.c
221
ishex = 1;
crypto/openssl/crypto/x509/v3_utl.c
223
ishex = 0;
crypto/openssl/crypto/x509/v3_utl.c
226
if (ishex)
lib/libc/stdio/vfscanf.c
1071
ishex = 1;
lib/libc/stdio/vfscanf.c
1078
if ((ishex && isxdigit(c)) || isdigit(c)) {
lib/libc/stdio/vfscanf.c
1107
if (((c == 'E' || c == 'e') && !ishex) ||
lib/libc/stdio/vfscanf.c
1108
((c == 'P' || c == 'p') && ishex)) {
lib/libc/stdio/vfscanf.c
1113
} else if ((ishex && isxdigit(c)) || isdigit(c)) {
lib/libc/stdio/vfscanf.c
990
_Bool gotmantdig = 0, ishex = 0;
lib/libc/stdio/vfwscanf.c
858
_Bool gotmantdig = 0, ishex = 0;
lib/libc/stdio/vfwscanf.c
946
ishex = 1;
lib/libc/stdio/vfwscanf.c
953
if ((ishex && iswxdigit(c)) || iswdigit(c))
lib/libc/stdio/vfwscanf.c
964
if (((c == 'E' || c == 'e') && !ishex) ||
lib/libc/stdio/vfwscanf.c
965
((c == 'P' || c == 'p') && ishex)) {
lib/libc/stdio/vfwscanf.c
970
} else if ((ishex && iswxdigit(c)) || iswdigit(c)) {
sbin/ipf/common/lexer.c
442
(ishex(c) || isdigit(c) || c == ':')) {
sbin/ipf/common/lexer.c
464
} while ((ishex(c) || c == ':' || c == '.') &&
sbin/ipf/common/lexer.c
485
for (s = yystr; *s && ishex(*s); s++)
sbin/ipf/common/lexer.c
511
} while (ishex(n));