Lines Matching refs:a
40 #define G1(a) \ argument
41 (ctx->s[0][(a) & 0xFF]) ^ (ctx->s[1][((a) >> 8) & 0xFF]) \
42 ^ (ctx->s[2][((a) >> 16) & 0xFF]) ^ (ctx->s[3][(a) >> 24])
53 #define ENCROUND(n, a, b, c, d) \ argument
54 x = G1 (a); y = G2 (b); \
60 #define DECROUND(n, a, b, c, d) \ argument
61 x = G1 (a); y = G2 (b); \
72 ENCROUND (2 * (n), a, b, c, d); \
73 ENCROUND (2 * (n) + 1, c, d, a, b)
76 DECROUND (2 * (n) + 1, c, d, a, b); \
77 DECROUND (2 * (n), a, b, c, d)
102 u32 a, b, c, d; in twofish_encrypt() local
108 INPACK (0, a, 0); in twofish_encrypt()
126 OUTUNPACK (2, a, 6); in twofish_encrypt()
139 u32 a, b, c, d; in twofish_decrypt() local
147 INPACK (2, a, 6); in twofish_decrypt()
161 OUTUNPACK (0, a, 0); in twofish_decrypt()