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_co…
77 static int long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX…
97 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_ITEM_start()
99 *(long *)pval = it->size; in ASN1_ITEM_start()
103 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it) in long_free() argument
105 *(long *)pval = it->size; in long_free()
108 static int long_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM *it) in long_i2c() argument
114 char *cp = (char *)pval; in long_i2c()
145 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, in long_c2i() argument
151 char *cp = (char *)pval; in long_c2i()
178 static int long_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, in long_print() argument
181 return BIO_printf(out, "%ld\n", *(long *)pval); in long_print()