Lines Matching refs:pval
72 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
75 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
76 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it);
77 static int long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx);
97 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
99 *(long *)pval = it->size;
103 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
105 *(long *)pval = it->size;
108 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it)
114 char *cp = (char *)pval;
145 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
151 char *cp = (char *)pval;
178 static int long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it,
181 return BIO_printf(out, "%ld\n", *(long *)pval);