HomeSort by: relevance | last modified time | path
    Searched refs:xnew (Results 1 - 9 of 9) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/crypto/asn1/
a_d2i_fp.c 22 void *ASN1_d2i_fp(void *(*xnew)(void), d2i_of_void *d2i, FILE *in, void **x)
32 ret = ASN1_d2i_bio(xnew, d2i, b, x);
38 void *ASN1_d2i_bio(void *(*xnew)(void), d2i_of_void *d2i, BIO *in, void **x)
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
a_d2i_fp.c 22 void *ASN1_d2i_fp(void *(*xnew) (void), d2i_of_void *d2i, FILE *in, void **x)
32 ret = ASN1_d2i_bio(xnew, d2i, b, x);
38 void *ASN1_d2i_bio(void *(*xnew) (void), d2i_of_void *d2i, BIO *in, void **x)
  /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
a_d2i_fp.c 21 void *ASN1_d2i_fp(void *(*xnew) (void), d2i_of_void *d2i, FILE *in, void **x)
31 ret = ASN1_d2i_bio(xnew, d2i, b, x);
37 void *ASN1_d2i_bio(void *(*xnew) (void), d2i_of_void *d2i, BIO *in, void **x)
  /src/crypto/external/bsd/openssl.old/dist/include/openssl/
asn1.h 266 # define CHECKED_NEW_OF(type, xnew) \
267 ((void *(*)(void)) (1 ? xnew : ((type *(*)(void))0)))
709 void *ASN1_d2i_fp(void *(*xnew) (void), d2i_of_void *d2i, FILE *in, void **x);
711 # define ASN1_d2i_fp_of(type,xnew,d2i,in,x) \
712 ((type*)ASN1_d2i_fp(CHECKED_NEW_OF(type, xnew), \
736 void *ASN1_d2i_bio(void *(*xnew) (void), d2i_of_void *d2i, BIO *in, void **x);
738 # define ASN1_d2i_bio_of(type,xnew,d2i,in,x) \
739 ((type*)ASN1_d2i_bio( CHECKED_NEW_OF(type, xnew), \
  /src/external/gpl3/gdb/dist/gdbsupport/
poison.h 84 /* Poison XNEW and friends to catch usages of malloc-style allocations on
98 xnew () function
100 static_assert (IsMallocable<T>::value, "Trying to use XNEW with a non-POD \
102 return XNEW (T);
105 #undef XNEW
106 #define XNEW(T) xnew<T>()
  /src/external/gpl3/gdb.old/dist/gdbsupport/
poison.h 84 /* Poison XNEW and friends to catch usages of malloc-style allocations on
98 xnew () function
100 static_assert (IsMallocable<T>::value, "Trying to use XNEW with a non-POD \
102 return XNEW (T);
105 #undef XNEW
106 #define XNEW(T) xnew<T>()
  /src/games/phantasia/
misc.c 721 altercoordinates(double xnew, double ynew, int operation)
728 xnew = Player.p_x + ROLL(1.0, 5.0);
734 if (Beyond && fabs(xnew) < D_BEYOND && fabs(ynew) < D_BEYOND)
740 if (fabs(xnew) > fabs(ynew))
741 xnew = SGN(Player.p_x) * MAX(fabs(Player.p_x), D_BEYOND);
748 xnew = Player.p_x + SGN(Player.p_x) * ROLL(50 * Circle, 250 * Circle);
754 Circle = CIRCLE(Player.p_x = floor(xnew), Player.p_y = floor(ynew));
  /src/crypto/external/apache2/openssl/dist/include/openssl/
asn1.h.in 319 #define CHECKED_NEW_OF(type, xnew) \
320 ((void *(*)(void))(1 ? xnew : ((type * (*)(void))0)))
757 void *ASN1_d2i_fp(void *(*xnew)(void), d2i_of_void *d2i, FILE *in, void **x);
759 #define ASN1_d2i_fp_of(type, xnew, d2i, in, x) \
760 ((type *)ASN1_d2i_fp(CHECKED_NEW_OF(type, xnew), \
781 void *ASN1_d2i_bio(void *(*xnew)(void), d2i_of_void *d2i, BIO *in, void **x);
783 #define ASN1_d2i_bio_of(type, xnew, d2i, in, x) \
784 ((type *)ASN1_d2i_bio(CHECKED_NEW_OF(type, xnew), \
  /src/crypto/external/bsd/openssl/dist/include/openssl/
asn1.h.in 311 # define CHECKED_NEW_OF(type, xnew) \
312 ((void *(*)(void)) (1 ? xnew : ((type *(*)(void))0)))
762 void *ASN1_d2i_fp(void *(*xnew) (void), d2i_of_void *d2i, FILE *in, void **x);
764 # define ASN1_d2i_fp_of(type,xnew,d2i,in,x) \
765 ((type*)ASN1_d2i_fp(CHECKED_NEW_OF(type, xnew), \
786 void *ASN1_d2i_bio(void *(*xnew) (void), d2i_of_void *d2i, BIO *in, void **x);
788 # define ASN1_d2i_bio_of(type,xnew,d2i,in,x) \
789 ((type*)ASN1_d2i_bio( CHECKED_NEW_OF(type, xnew), \

Completed in 35 milliseconds