Searched refs:utype (Results 1 - 16 of 16) sorted by relevance

/freebsd-10.0-release/crypto/openssl/crypto/asn1/
H A Dtasn_new.c329 int utype; local
339 utype = -1;
341 utype = it->utype;
342 switch(utype)
366 str = ASN1_STRING_type_new(utype);
379 int utype; local
390 utype = -1;
392 utype = it->utype;
[all...]
H A Dtasn_fre.c206 int utype; local
221 utype = typ->type;
228 utype = -1;
234 utype = it->utype;
235 if ((utype != V_ASN1_BOOLEAN) && !*pval)
239 switch(utype)
H A Dasn1_gen.c109 int utype; member in struct:__anon4992
120 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf);
121 static ASN1_TYPE *asn1_str2type(const char *str, int format, int utype);
159 if ((asn1_tags.utype == V_ASN1_SEQUENCE) || (asn1_tags.utype == V_ASN1_SET))
166 ret = asn1_multi(asn1_tags.utype, asn1_tags.str, cnf);
169 ret = asn1_str2type(asn1_tags.str, asn1_tags.format, asn1_tags.utype);
281 int utype; local
299 utype = asn1_str2tag(elem, len);
301 if (utype
448 asn1_multi(int utype, const char *section, X509V3_CTX *cnf) argument
629 asn1_str2type(const char *str, int format, int utype) argument
[all...]
H A Dtasn_dec.c224 if (!(ASN1_tag2bit(otag) & it->utype))
252 exptag = it->utype;
295 | it->utype);
771 int ret = 0, utype; local
786 utype = tag;
790 utype = it->utype;
792 if (utype == V_ASN1_ANY)
809 ret = asn1_check_tlen(NULL, &utype, &oclass, NULL, NULL,
818 utype
927 asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
[all...]
H A Dtasn_enc.c513 int utype; local
517 utype = it->utype;
523 len = asn1_ex_i2c(pval, NULL, &utype, it);
529 * utype.
531 if ((utype == V_ASN1_SEQUENCE) || (utype == V_ASN1_SET) ||
532 (utype == V_ASN1_OTHER))
549 if (tag == -1) tag = utype;
556 asn1_ex_i2c(pval, *out, &utype, i
576 int utype; local
[all...]
H A Dx_bignum.c76 static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
127 int utype, char *free_cont, const ASN1_ITEM *it)
126 bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
H A Dtasn_prn.c524 long utype; local
536 utype = str->type & ~V_ASN1_NEG;
538 utype = it->utype;
539 if (utype == V_ASN1_ANY)
542 utype = atype->type;
548 pname = ASN1_tag2str(utype);
553 pname = ASN1_tag2str(utype);
558 if (utype == V_ASN1_NULL)
573 switch (utype)
[all...]
H A Dx_long.c73 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
143 int utype, char *free_cont, const ASN1_ITEM *it)
142 long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it) argument
H A Dtasn_utl.c78 int *sel = offset2ptr(*pval, it->utype);
89 sel = offset2ptr(*pval, it->utype);
H A Dasn1t.h570 long utype; /* underlying type */ member in struct:ASN1_ITEM_st
614 * structure. In this case the 'utype' field
671 typedef int ASN1_primitive_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
941 int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
/freebsd-10.0-release/contrib/gdb/gdb/
H A Ddwarfread.c1352 struct type *utype; local
1373 utype = lookup_utype (dip->die_ref);
1374 if (utype == NULL)
1379 else if (TYPE_CODE (utype) == TYPE_CODE_UNDEF)
1389 *utype = *type;
1420 struct type *utype; local
1423 utype = lookup_utype (dip->die_ref);
1424 if (utype == NULL)
1426 utype = lookup_pointer_type (type);
1427 alloc_utype (dip->die_ref, utype);
1462 struct type *utype; local
[all...]
/freebsd-10.0-release/contrib/tnftp/src/
H A Dfetch.c322 parse_url(const char *url, const char *desc, url_t *utype, argument
330 if (url == NULL || desc == NULL || utype == NULL || uuser == NULL
337 *utype = UNKNOWN_URL_T;
344 *utype = HTTP_URL_T;
349 *utype = FTP_URL_T;
354 *utype = FILE_URL_T;
379 if (*utype == FTP_URL_T) /* skip first / for ftp URLs */
386 if (*utype == FTP_URL_T)
453 if (*utype == FTP_URL_T) /* skip first / for ftp URLs */
/freebsd-10.0-release/contrib/llvm/tools/clang/utils/TableGen/
H A DNeonEmitter.cpp1462 std::string utype = "U" + typestr.str(); local
1464 abd = "(" + TypeString('d', utype) + ")" + abd;
1465 s += Extend(utype, abd) + ";";
1479 std::string utype = "U" + typestr.str(); local
1481 abd = "(" + TypeString('d', utype) + ")" + abd;
1482 s += Extend(utype, abd) + ";";
/freebsd-10.0-release/contrib/gcc/
H A Dtree-ssa-loop-ivopts.c3039 tree utype = TREE_TYPE (ubase), ctype = TREE_TYPE (cbase); local
3050 if (TYPE_PRECISION (utype) > TYPE_PRECISION (ctype))
3064 if (TYPE_UNSIGNED (utype))
3065 uutype = utype;
3068 uutype = unsigned_type_for (utype);
3081 if (TYPE_PRECISION (utype) < TYPE_PRECISION (ctype))
3852 tree utype = TREE_TYPE (ubase), ctype; local
3868 if (TYPE_PRECISION (utype) > TYPE_PRECISION (ctype))
3887 if (TYPE_PRECISION (utype) != TYPE_PRECISION (ctype))
3909 if (!divide (TYPE_PRECISION (utype), ustep
5374 tree step, ctype, utype; local
[all...]
H A Dtree-ssa-loop-niter.c1804 tree utype; local
1813 utype = unsigned_type_for (type);
1817 fold_convert (utype, estimation),
H A Dfold-const.c4350 tree utype, minv, maxv;
4354 utype = lang_hooks.types.unsigned_type (etype);
4355 maxv = fold_convert (utype, TYPE_MAX_VALUE (etype));
4358 minv = fold_convert (utype, TYPE_MIN_VALUE (etype));
4362 etype = utype;
4324 tree utype, minv, maxv; local

Completed in 139 milliseconds