Lines Matching refs:I0
300 uint32_t I0, I1; in camellia_feistel() local
301 I0 = x[0] ^ k[0]; in camellia_feistel()
304 I0 = ((uint32_t) SBOX1((I0 >> 24) & 0xFF) << 24) | in camellia_feistel()
305 ((uint32_t) SBOX2((I0 >> 16) & 0xFF) << 16) | in camellia_feistel()
306 ((uint32_t) SBOX3((I0 >> 8) & 0xFF) << 8) | in camellia_feistel()
307 ((uint32_t) SBOX4((I0 ) & 0xFF) ); in camellia_feistel()
313 I0 ^= (I1 << 8) | (I1 >> 24); in camellia_feistel()
314 I1 ^= (I0 << 16) | (I0 >> 16); in camellia_feistel()
315 I0 ^= (I1 >> 8) | (I1 << 24); in camellia_feistel()
316 I1 ^= (I0 >> 8) | (I0 << 24); in camellia_feistel()
319 z[1] ^= I0; in camellia_feistel()