Lines Matching defs:tempa
132 __u8 tempa[4]; /* Used for the column/row operations */
146 tempa[0] = RoundKey[k + 0];
147 tempa[1] = RoundKey[k + 1];
148 tempa[2] = RoundKey[k + 2];
149 tempa[3] = RoundKey[k + 3];
158 const __u8 u8tmp = tempa[0];
159 tempa[0] = tempa[1];
160 tempa[1] = tempa[2];
161 tempa[2] = tempa[3];
162 tempa[3] = u8tmp;
171 tempa[0] = getSBoxValue(tempa[0]);
172 tempa[1] = getSBoxValue(tempa[1]);
173 tempa[2] = getSBoxValue(tempa[2]);
174 tempa[3] = getSBoxValue(tempa[3]);
177 tempa[0] = tempa[0] ^ Rcon[i / Nk];
181 RoundKey[j + 0] = RoundKey[k + 0] ^ tempa[0];
182 RoundKey[j + 1] = RoundKey[k + 1] ^ tempa[1];
183 RoundKey[j + 2] = RoundKey[k + 2] ^ tempa[2];
184 RoundKey[j + 3] = RoundKey[k + 3] ^ tempa[3];