Lines Matching refs:i2d
264 # define CHECKED_I2D_OF(type, i2d) \
265 ((i2d_of_void*) (1 ? i2d : ((I2D_OF(type))0)))
688 void *ASN1_dup(i2d_of_void *i2d, d2i_of_void *d2i, void *x);
690 # define ASN1_dup_of(type,i2d,d2i,x) \
691 ((type*)ASN1_dup(CHECKED_I2D_OF(type, i2d), \
695 # define ASN1_dup_of_const(type,i2d,d2i,x) \
696 ((type*)ASN1_dup(CHECKED_I2D_OF(const type, i2d), \
718 int ASN1_i2d_fp(i2d_of_void *i2d, FILE *out, void *x);
720 # define ASN1_i2d_fp_of(type,i2d,out,x) \
721 (ASN1_i2d_fp(CHECKED_I2D_OF(type, i2d), \
725 # define ASN1_i2d_fp_of_const(type,i2d,out,x) \
726 (ASN1_i2d_fp(CHECKED_I2D_OF(const type, i2d), \
745 int ASN1_i2d_bio(i2d_of_void *i2d, BIO *out, unsigned char *x);
747 # define ASN1_i2d_bio_of(type,i2d,out,x) \
748 (ASN1_i2d_bio(CHECKED_I2D_OF(type, i2d), \
752 # define ASN1_i2d_bio_of_const(type,i2d,out,x) \
753 (ASN1_i2d_bio(CHECKED_I2D_OF(const type, i2d), \