Lines Matching full:12
22 WARN_ON_ONCE(nrounds != 20 && nrounds != 12);
25 x[0] += x[4]; x[12] = rol32(x[12] ^ x[0], 16);
30 x[8] += x[12]; x[4] = rol32(x[4] ^ x[8], 12);
31 x[9] += x[13]; x[5] = rol32(x[5] ^ x[9], 12);
32 x[10] += x[14]; x[6] = rol32(x[6] ^ x[10], 12);
33 x[11] += x[15]; x[7] = rol32(x[7] ^ x[11], 12);
35 x[0] += x[4]; x[12] = rol32(x[12] ^ x[0], 8);
40 x[8] += x[12]; x[4] = rol32(x[4] ^ x[8], 7);
46 x[1] += x[6]; x[12] = rol32(x[12] ^ x[1], 16);
50 x[10] += x[15]; x[5] = rol32(x[5] ^ x[10], 12);
51 x[11] += x[12]; x[6] = rol32(x[6] ^ x[11], 12);
52 x[8] += x[13]; x[7] = rol32(x[7] ^ x[8], 12);
53 x[9] += x[14]; x[4] = rol32(x[4] ^ x[9], 12);
56 x[1] += x[6]; x[12] = rol32(x[12] ^ x[1], 8);
61 x[11] += x[12]; x[6] = rol32(x[6] ^ x[11], 7);
71 * @nrounds: number of rounds (20 or 12; 20 is recommended)
89 state->x[12]++;
97 * @nrounds: number of rounds (20 or 12; 20 is recommended)
112 memcpy(&out[4], &permuted_state.x[12], 16);