HomeSort by: relevance | last modified time | path
    Searched defs:ishex (Results 1 - 14 of 14) sorted by relevancy

  /src/crypto/external/bsd/openssl/dist/crypto/
params_from_text.c 27 const OSSL_PARAM **paramdef, int *ishex,
35 * ishex is used to translate legacy style string controls in hex format
38 *ishex = strncmp(key, "hex", 3) == 0;
40 if (*ishex)
52 if (*ishex)
113 if (*ishex) {
120 if (*ishex) {
138 const char *value, size_t value_n, int ishex,
183 if (ishex) {
209 int ishex = 0 local
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/
params_from_text.c 28 const OSSL_PARAM **paramdef, int *ishex,
36 * ishex is used to translate legacy style string controls in hex format
39 *ishex = CHECK_AND_SKIP_PREFIX(key, "hex");
50 if (*ishex)
111 if (*ishex) {
118 if (*ishex) {
136 const char *value, size_t value_n, int ishex,
181 if (ishex) {
312 int ishex = 0; local
322 &paramdef, &ishex, &buf_n, &tmpbn, found)
    [all...]
  /src/external/gpl3/gdb/dist/gdbsupport/
rsp-low.cc 38 ishex (int ch, int *val) function
86 while (ishex (*buff, &nibble))
  /src/external/gpl3/gdb.old/dist/gdbsupport/
rsp-low.cc 38 ishex (int ch, int *val) function
86 while (ishex (*buff, &nibble))
  /src/crypto/external/apache2/openssl/dist/apps/
genpkey.c 74 static const char *param_datatype_2name(unsigned int type, int *ishex)
76 *ishex = 0;
86 *ishex = 1;
99 int i, ishex = 0; local
115 const char *name = param_datatype_2name(params[i].data_type, &ishex);
118 BIO_printf(bio_err, " %s%s:%s\n", ishex ? "hex" : "", params[i].key, name);
  /src/external/bsd/ipf/dist/tools/
lexer.c 29 #define ishex(c) (ISDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || \ macro
446 (ishex(c) || isdigit(c) || c == ':')) {
468 } while ((ishex(c) || c == ':' || c == '.') &&
489 for (s = yystr; *s && ishex(*s); s++)
515 } while (ishex(n));
  /src/lib/libc/stdio/
vfscanf.c 971 _Bool gotmantdig = 0, ishex = 0; local
1052 ishex = 1;
1059 if ((ishex && isxdigit_l(c, loc)) || isdigit_l(c, loc))
1070 if (((c == 'E' || c == 'e') && !ishex) ||
1071 ((c == 'P' || c == 'p') && ishex)) {
1076 } else if ((ishex && isxdigit_l(c, loc)) || isdigit_l(c, loc)) {
vfwscanf.c 773 int gotmantdig = 0, ishex = 0; local
856 ishex = 1;
863 if ((ishex && iswxdigit_l(c, loc)) ||
875 if (((c == 'E' || c == 'e') && !ishex) ||
876 ((c == 'P' || c == 'p') && ishex)) {
881 } else if ((ishex && iswxdigit_l(c, loc)) ||
  /src/crypto/external/apache2/openssl/dist/crypto/evp/
ctrl_params_translate.c 195 int ishex; member in struct:translation_ctx_st
567 if (ctx->ishex) {
2793 ctx.ishex = (tmpl.ctrl_hexstr != NULL);
  /src/crypto/external/apache2/openssl/dist/crypto/x509/
v3_utl.c 200 int isneg, ishex; local
221 ishex = 1;
223 ishex = 0;
226 if (ishex)
  /src/crypto/external/bsd/openssl/dist/crypto/evp/
ctrl_params_translate.c 187 int ishex; member in struct:translation_ctx_st
563 if (ctx->ishex) {
2731 ctx.ishex = (tmpl.ctrl_hexstr != NULL);
  /src/crypto/external/bsd/openssl/dist/crypto/x509/
v3_utl.c 198 int isneg, ishex; local
219 ishex = 1;
221 ishex = 0;
224 if (ishex)
  /src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/
v3_utl.c 199 int isneg, ishex; local
218 ishex = 1;
220 ishex = 0;
222 if (ishex)
  /src/external/mpl/dhcp/bind/dist/lib/dns/
name.c 2643 const char ishex[256] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, variable
2686 if (ndata[0] != '-' || !ishex[ndata[1]] || !ishex[ndata[2]] ||
2687 !ishex[ndata[3]] || !ishex[ndata[4]])

Completed in 38 milliseconds