Lines Matching refs:pval
21 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
22 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
24 static int long_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype,
26 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
28 static int long_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
49 static int long_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
51 memcpy(pval, &it->size, COPY_SIZE(*pval, it->size));
55 static void long_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
57 memcpy(pval, &it->size, COPY_SIZE(*pval, it->size));
85 static int long_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype,
92 memcpy(<mp, pval, COPY_SIZE(*pval, ltmp));
128 static int long_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
185 memcpy(pval, <mp, COPY_SIZE(*pval, ltmp));
189 static int long_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
194 memcpy(&l, pval, COPY_SIZE(*pval, l));