Lines Matching refs:I0
306 uint32_t I0, I1; in camellia_feistel() local
307 I0 = x[0] ^ k[0]; in camellia_feistel()
310 I0 = ((uint32_t) SBOX1((I0 >> 24) & 0xFF) << 24) | in camellia_feistel()
311 ((uint32_t) SBOX2((I0 >> 16) & 0xFF) << 16) | in camellia_feistel()
312 ((uint32_t) SBOX3((I0 >> 8) & 0xFF) << 8) | in camellia_feistel()
313 ((uint32_t) SBOX4((I0 ) & 0xFF) ); in camellia_feistel()
319 I0 ^= (I1 << 8) | (I1 >> 24); in camellia_feistel()
320 I1 ^= (I0 << 16) | (I0 >> 16); in camellia_feistel()
321 I0 ^= (I1 >> 8) | (I1 << 24); in camellia_feistel()
322 I1 ^= (I0 >> 8) | (I0 << 24); in camellia_feistel()
325 z[1] ^= I0; in camellia_feistel()