Searched refs:i2d (Results 1 - 25 of 26) sorted by relevance

12

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A Dconv.c8 i2d (signed int i) function
28 printf ("%lf, %lf, %lf\n", i2d (~0), i2d (1 << 31), i2d (1));
31 printf ("%d, %d, %d\n", d2i (i2d (~0)), d2i (i2d (1 << 31)), d2i (i2d (1)));
/openbsd-current/lib/libcrypto/asn1/
H A Dasn1_old.c71 ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *x) argument
81 i = i2d(x, NULL);
88 i = i2d(x, &p);
136 ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x) argument
146 ret = ASN1_i2d_bio(i2d, b, x);
153 ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, unsigned char *x) argument
159 n = i2d(x, NULL);
167 i2d(x, &p);
H A Dasn1.h281 #define CHECKED_I2D_OF(type, i2d) \
282 ((i2d_of_void*) (1 ? i2d : ((I2D_OF(type))0)))
737 void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *x);
748 int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x);
750 #define ASN1_i2d_fp_of(type,i2d,out,x) \
751 (ASN1_i2d_fp(CHECKED_I2D_OF(type, i2d), \
755 #define ASN1_i2d_fp_of_const(type,i2d,out,x) \
756 (ASN1_i2d_fp(CHECKED_I2D_OF(const type, i2d), \
776 int ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, unsigned char *x);
778 #define ASN1_i2d_bio_of(type,i2d,ou
[all...]
/openbsd-current/lib/libcrypto/x509/
H A Dx509_ia5.c79 .i2d = NULL,
95 .i2d = NULL,
111 .i2d = NULL,
127 .i2d = NULL,
143 .i2d = NULL,
159 .i2d = NULL,
175 .i2d = NULL,
191 .i2d = NULL,
H A Dx509_int.c70 .i2d = NULL,
87 .i2d = NULL,
H A Dx509_ocsp.c105 .i2d = NULL,
122 .i2d = NULL,
139 .i2d = NULL,
156 .i2d = NULL,
173 .i2d = i2d_ocsp_nonce,
190 .i2d = NULL,
207 .i2d = NULL,
H A Dx509_bitst.c112 .i2d = NULL,
129 .i2d = NULL,
146 .i2d = NULL,
H A Dx509_extku.c78 .i2d = NULL,
96 .i2d = NULL,
H A Dx509_skey.c77 .i2d = NULL,
H A Dx509_pku.c75 .i2d = NULL,
H A Dx509_pcons.c81 .i2d = NULL,
H A Dx509_info.c81 .i2d = NULL,
98 .i2d = NULL,
H A Dx509_akey.c80 .i2d = NULL,
H A Dx509_bcons.c80 .i2d = NULL,
H A Dx509_pmaps.c79 .i2d = NULL,
H A Dx509_alt.c85 .i2d = NULL,
101 .i2d = NULL,
117 .i2d = NULL,
H A Dx509_conf.c205 if ((ext_len = method->i2d(ext_struct, NULL)) <= 0)
210 if (method->i2d(ext_struct, &p) != ext_len)
H A Dx509_crld.c82 .i2d = NULL,
99 .i2d = NULL,
H A Dx509_ncons.c91 .i2d = NULL,
H A Dx509_cpols.c92 .i2d = NULL,
H A Dx509_asid.c952 .i2d = NULL,
H A Dx509v3.h106 X509V3_EXT_I2D i2d; member in struct:v3_ext_method
/openbsd-current/lib/libcrypto/ct/
H A Dct_x509v3.c141 .i2d = (X509V3_EXT_I2D)i2d_SCT_LIST,
159 .i2d = NULL,
177 .i2d = (X509V3_EXT_I2D)i2d_SCT_LIST,
/openbsd-current/lib/libcrypto/pem/
H A Dpem_lib.c325 PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp, void *x, argument
337 ret = PEM_ASN1_write_bio(i2d, name, b, x, enc, kstr, klen, callback, u);
344 PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, void *x, argument
364 if ((dsize = i2d(x, NULL)) < 0) {
377 i = i2d(x, &p);
H A Dpem.h335 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, void *x,
351 int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp,

Completed in 290 milliseconds

12