Lines Matching refs:I1
306 uint32_t I0, I1; in camellia_feistel() local
308 I1 = x[1] ^ k[1]; in camellia_feistel()
314 I1 = ((uint32_t) SBOX2((I1 >> 24) & 0xFF) << 24) | in camellia_feistel()
315 ((uint32_t) SBOX3((I1 >> 16) & 0xFF) << 16) | in camellia_feistel()
316 ((uint32_t) SBOX4((I1 >> 8) & 0xFF) << 8) | in camellia_feistel()
317 ((uint32_t) SBOX1((I1 ) & 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()
324 z[0] ^= I1; in camellia_feistel()