Y 32 lib/crypto/md4.c static uint32_t F(uint32_t X, uint32_t Y, uint32_t Z) Y 34 lib/crypto/md4.c return (X&Y) | ((~X)&Z); Y 37 lib/crypto/md4.c static uint32_t G(uint32_t X, uint32_t Y, uint32_t Z) Y 39 lib/crypto/md4.c return (X&Y) | (X&Z) | (Y&Z); Y 42 lib/crypto/md4.c static uint32_t H(uint32_t X, uint32_t Y, uint32_t Z) Y 44 lib/crypto/md4.c return X^Y^Z; Y 67 source4/heimdal/lib/asn1/gen_encode.c #define X(Y) { Y, #Y } Y 151 source4/heimdal/lib/hcrypto/imath/imath.c #define UMUL(X, Y, Z) \ Y 152 source4/heimdal/lib/hcrypto/imath/imath.c do{mp_size ua_=MP_USED(X),ub_=MP_USED(Y);mp_size o_=ua_+ub_;\ Y 154 source4/heimdal/lib/hcrypto/imath/imath.c (void) s_kmul(MP_DIGITS(X),MP_DIGITS(Y),MP_DIGITS(Z),ua_,ub_);\