Home
last modified time | relevance | path

Searched refs:ishex (Results 1 – 7 of 7) sorted by relevance

/freebsd/crypto/openssl/crypto/
H A Dparams_from_text.c27 const OSSL_PARAM **paramdef, int *ishex, in prepare_from_text() argument
38 *ishex = strncmp(key, "hex", 3) == 0; in prepare_from_text()
40 if (*ishex) in prepare_from_text()
52 if (*ishex) in prepare_from_text()
113 if (*ishex) { in prepare_from_text()
120 if (*ishex) { in prepare_from_text()
138 const char *value, size_t value_n, int ishex, in construct_from_text() argument
183 if (ishex) { in construct_from_text()
209 int ishex = 0; in OSSL_PARAM_allocate_from_text() local
219 &paramdef, &ishex, &buf_n, &tmpbn, found)) in OSSL_PARAM_allocate_from_text()
[all …]
/freebsd/contrib/nvi/vi/
H A Dv_increment.c97 #undef ishex in v_increment()
98 #define ishex(c) (ISXDIGIT(c)) in v_increment() macro
113 if (!ishex(p[end])) in v_increment()
155 if (ishex(p[end])) in v_increment()
/freebsd/sbin/ipf/common/
H A Dlexer.c29 #define ishex(c) (ISDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || \ macro
442 (ishex(c) || isdigit(c) || c == ':')) { in yylex()
464 } while ((ishex(c) || c == ':' || c == '.') && in yylex()
485 for (s = yystr; *s && ishex(*s); s++) in yylex()
511 } while (ishex(n)); in yylex()
/freebsd/lib/libc/stdio/
H A Dvfscanf.c1000 _Bool gotmantdig = 0, ishex = 0; in parsefloat() local
1081 ishex = 1; in parsefloat()
1088 if ((ishex && isxdigit(c)) || isdigit(c)) { in parsefloat()
1117 if (((c == 'E' || c == 'e') && !ishex) || in parsefloat()
1118 ((c == 'P' || c == 'p') && ishex)) { in parsefloat()
1123 } else if ((ishex && isxdigit(c)) || isdigit(c)) { in parsefloat()
H A Dvfwscanf.c866 _Bool gotmantdig = 0, ishex = 0; in parsefloat() local
954 ishex = 1; in parsefloat()
961 if ((ishex && iswxdigit(c)) || iswdigit(c)) in parsefloat()
972 if (((c == 'E' || c == 'e') && !ishex) || in parsefloat()
973 ((c == 'P' || c == 'p') && ishex)) { in parsefloat()
978 } else if ((ishex && iswxdigit(c)) || iswdigit(c)) { in parsefloat()
/freebsd/crypto/openssl/crypto/x509/
H A Dv3_utl.c198 int isneg, ishex; in s2i_ASN1_INTEGER() local
219 ishex = 1; in s2i_ASN1_INTEGER()
221 ishex = 0; in s2i_ASN1_INTEGER()
224 if (ishex) in s2i_ASN1_INTEGER()
/freebsd/crypto/openssl/crypto/evp/
H A Dctrl_params_translate.c187 int ishex; member
563 if (ctx->ishex) { in default_fixup_args()
2727 ctx.ishex = (tmpl.ctrl_hexstr != NULL); in evp_pkey_ctx_ctrl_str_to_param()