Home
last modified time | relevance | path

Searched defs:x (Results 1 – 24 of 24) sorted by relevance

/crypto/
Dblowfish_common.c296 #define GET32_3(x) (((x) & 0xff)) argument
297 #define GET32_2(x) (((x) >> (8)) & (0xff)) argument
298 #define GET32_1(x) (((x) >> (16)) & (0xff)) argument
299 #define GET32_0(x) (((x) >> (24)) & (0xff)) argument
301 #define bf_F(x) (((S[GET32_0(x)] + S[256 + GET32_1(x)]) ^ \ argument
Dblowfish_generic.c26 #define GET32_3(x) (((x) & 0xff)) argument
27 #define GET32_2(x) (((x) >> (8)) & (0xff)) argument
28 #define GET32_1(x) (((x) >> (16)) & (0xff)) argument
29 #define GET32_0(x) (((x) >> (24)) & (0xff)) argument
31 #define bf_F(x) (((S[GET32_0(x)] + S[256 + GET32_1(x)]) ^ \ argument
Dsha512_generic.c43 static inline u64 Ch(u64 x, u64 y, u64 z) in Ch()
48 static inline u64 Maj(u64 x, u64 y, u64 z) in Maj()
83 #define e0(x) (ror64(x,28) ^ ror64(x,34) ^ ror64(x,39)) argument
84 #define e1(x) (ror64(x,14) ^ ror64(x,18) ^ ror64(x,41)) argument
85 #define s0(x) (ror64(x, 1) ^ ror64(x, 8) ^ (x >> 7)) argument
86 #define s1(x) (ror64(x,19) ^ ror64(x,61) ^ (x >> 6)) argument
Dmd5.c32 #define F1(x, y, z) (z ^ (x & (y ^ z))) argument
33 #define F2(x, y, z) F1(z, x, y) argument
34 #define F3(x, y, z) (x ^ y ^ z) argument
35 #define F4(x, y, z) (y ^ (x | ~z)) argument
37 #define MD5STEP(f, w, x, y, z, in, s) \ argument
Drmd160.c37 #define F1(x, y, z) (x ^ y ^ z) /* XOR */ argument
38 #define F2(x, y, z) (z ^ (x & (y ^ z))) /* x ? y : z */ argument
39 #define F3(x, y, z) ((x | ~y) ^ z) argument
40 #define F4(x, y, z) (y ^ (z & (x ^ y))) /* z ? x : y */ argument
41 #define F5(x, y, z) (x ^ (y | ~z)) argument
43 #define ROUND(a, b, c, d, e, f, k, x, s) { \ argument
Dtwofish_generic.c85 #define INPACK(n, x, m) \ argument
88 #define OUTUNPACK(n, x, m) \ argument
103 u32 x, y; in twofish_encrypt() local
138 u32 x, y; in twofish_decrypt() local
Dfcrypt.c73 #define Z(x) cpu_to_be32(x << 3) argument
110 #define Z(x) cpu_to_be32(((x & 0x1f) << 27) | (x >> 5)) argument
147 #define Z(x) cpu_to_be32(x << 11) argument
184 #define Z(x) cpu_to_be32(x << 19) argument
Dmd4.c42 static inline u32 lshift(u32 x, unsigned int s) in lshift()
48 static inline u32 F(u32 x, u32 y, u32 z) in F()
53 static inline u32 G(u32 x, u32 y, u32 z) in G()
58 static inline u32 H(u32 x, u32 y, u32 z) in H()
Dstreebog_generic.c851 static void streebog_xor(const struct streebog_uint512 *x, in streebog_xor()
865 static void streebog_xlps(const struct streebog_uint512 *x, in streebog_xlps()
933 static void streebog_add512(const struct streebog_uint512 *x, in streebog_add512()
Dgf128mul.c139 static void gf128mul_x8_lle(be128 *x) in gf128mul_x8_lle()
149 static void gf128mul_x8_bbe(be128 *x) in gf128mul_x8_bbe()
159 void gf128mul_x8_ble(le128 *r, const le128 *x) in gf128mul_x8_ble()
Dsm3_generic.c29 static inline u32 p0(u32 x) in p0()
34 static inline u32 p1(u32 x) in p1()
Decc.h42 #define ECC_POINT_INIT(x, y, ndigits) (struct ecc_point) { x, y, ndigits } argument
Dcast5_generic.c400 static void key_schedule(u32 *x, u32 *z, u32 *k) in key_schedule()
479 u32 x[4]; in cast5_setkey() local
Dsm2.c67 MPI x, y; in sm2_ec_ctx_init() local
138 MPI x, y; in sm2_ecc_os2ec() local
245 MPI x, y; in sm2_z_digest_update_point() local
Dtwofish_common.c468 #define CALC_S(a, b, c, d, i, w, x, y, z) \ argument
575 u32 x, y; in __twofish_setkey() local
Dxor.c20 #define XOR_SELECT_TEMPLATE(x) (x) argument
Dadiantum.c188 u64 x = le64_to_cpu(v1->b); in le128_add() local
199 u64 x = le64_to_cpu(v1->b); in le128_sub() local
Daes_generic.c59 static inline u8 byte(const u32 x, const unsigned n) in byte()
Dcrypto_user_stat.c22 #define null_terminated(x) (strnlen(x, sizeof(x)) < sizeof(x)) argument
Dseed.c27 byte(const u32 x, const unsigned n) in byte()
Decdsa.c21 u64 x[ECC_MAX_DIGITS]; /* pub key x and y coordinates */ member
Dcrypto_user_base.c25 #define null_terminated(x) (strnlen(x, sizeof(x)) < sizeof(x)) argument
Dvmac.c78 #define UINT64_C(x) x##ULL argument
/crypto/asymmetric_keys/
Dverify_pefile.c36 #define chkaddr(base, x, s) \ in pefile_parse_binary() argument