Lines Matching refs:pval
69 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
70 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
72 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it);
73 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, char *free_co…
74 static int long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX…
94 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_ITEM_start()
96 *(long *)pval = it->size; in ASN1_ITEM_start()
100 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it) in long_free() argument
102 *(long *)pval = it->size; in long_free()
105 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) in long_i2c() argument
111 char *cp = (char *)pval; in long_i2c()
142 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in long_c2i() argument
148 char *cp = (char *)pval; in long_c2i()
175 static int long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, in long_print() argument
178 return BIO_printf(out, "%ld\n", *(long *)pval); in long_print()