Lines Matching refs:typ
836 ASN1_TYPE *typ = NULL; in asn1_ex_c2i() local
847 typ = ASN1_TYPE_new(); in asn1_ex_c2i()
848 if (typ == NULL) in asn1_ex_c2i()
850 *pval = (ASN1_VALUE *)typ; in asn1_ex_c2i()
852 typ = (ASN1_TYPE *)*pval; in asn1_ex_c2i()
854 if (utype != typ->type) in asn1_ex_c2i()
855 ASN1_TYPE_set(typ, utype, NULL); in asn1_ex_c2i()
857 pval = &typ->value.asn1_value; in asn1_ex_c2i()
959 if (typ && (utype == V_ASN1_NULL)) in asn1_ex_c2i()
960 typ->value.ptr = NULL; in asn1_ex_c2i()
965 ASN1_TYPE_free(typ); in asn1_ex_c2i()