Lines Matching +full:3 +full:x3

41 	uint64_t x0, x1, x2, x3, x4, x5, x6, x7;  in br_aes_ct64_bitslice_Sbox()  local
59 x3 = q[4]; in br_aes_ct64_bitslice_Sbox()
60 x4 = q[3]; in br_aes_ct64_bitslice_Sbox()
68 y14 = x3 ^ x5; in br_aes_ct64_bitslice_Sbox()
70 y9 = x0 ^ x3; in br_aes_ct64_bitslice_Sbox()
74 y4 = y1 ^ x3; in br_aes_ct64_bitslice_Sbox()
198 q[3] = s4; in br_aes_ct64_bitslice_Sbox()
221 SWAP2(q[2], q[3]); in br_aes_ct64_ortho()
226 SWAP4(q[1], q[3]); in br_aes_ct64_ortho()
233 SWAP8(q[3], q[7]); in br_aes_ct64_ortho()
240 uint64_t x0, x1, x2, x3; in br_aes_ct64_interleave_in() local
245 x3 = w[3]; in br_aes_ct64_interleave_in()
249 x3 |= (x3 << 16); in br_aes_ct64_interleave_in()
253 x3 &= (uint64_t)0x0000FFFF0000FFFF; in br_aes_ct64_interleave_in()
257 x3 |= (x3 << 8); in br_aes_ct64_interleave_in()
261 x3 &= (uint64_t)0x00FF00FF00FF00FF; in br_aes_ct64_interleave_in()
263 *q1 = x1 | (x3 << 8); in br_aes_ct64_interleave_in()
270 uint64_t x0, x1, x2, x3; in br_aes_ct64_interleave_out() local
275 x3 = (q1 >> 8) & (uint64_t)0x00FF00FF00FF00FF; in br_aes_ct64_interleave_out()
279 x3 |= (x3 >> 8); in br_aes_ct64_interleave_out()
283 x3 &= (uint64_t)0x0000FFFF0000FFFF; in br_aes_ct64_interleave_out()
287 w[3] = (uint32_t)x3 | (uint32_t)(x3 >> 16); in br_aes_ct64_interleave_out()
355 q[3] = q[0]; in br_aes_ct64_keysched()
364 | (q[3] & (uint64_t)0x8888888888888888); in br_aes_ct64_keysched()
383 uint64_t x0, x1, x2, x3; in br_aes_ct64_skey_expand() local
385 x0 = x1 = x2 = x3 = comp_skey[u]; in br_aes_ct64_skey_expand()
389 x3 &= (uint64_t)0x8888888888888888; in br_aes_ct64_skey_expand()
392 x3 >>= 3; in br_aes_ct64_skey_expand()
396 skey[v + 3] = (x3 << 4) - x3; in br_aes_ct64_skey_expand()