Lines Matching refs:x2
206 …uint32_t x0, x1, x2, x3; //we CAN use an array, but then GCC will not use registers. so we use sep… in aesEncr() local
212 x2 = *src++ ^ *k++; in aesEncr()
222 ror(FwdTab0[(x2 >> 8) & 0xff], 16) ^ in aesEncr()
227 ror(FwdTab0[(x2 >> 16) & 0xff], 8) ^ in aesEncr()
232 ror(FwdTab0[(x2 >> 24) & 0xff], 0) ^ in aesEncr()
241 ror(FwdTab0[(x2 >> 0) & 0xff], 24); in aesEncr()
245 x2 = t2; in aesEncr()
252 (((uint32_t)(FwdSbox[(x2 >> 8) & 0xff])) << 8) ^ in aesEncr()
257 (((uint32_t)(FwdSbox[(x2 >> 16) & 0xff])) << 16) ^ in aesEncr()
262 (((uint32_t)(FwdSbox[(x2 >> 24) & 0xff])) << 24) ^ in aesEncr()
271 (((uint32_t)(FwdSbox[(x2 >> 0) & 0xff])) << 0); in aesEncr()
276 uint32_t x0, x1, x2, x3; in aesDecr() local
282 x2 = *src++ ^ *k++; in aesDecr()
292 ror(RevTab0[(x2 >> 8) & 0xff], 16) ^ in aesDecr()
299 ror(RevTab0[(x2 >> 0) & 0xff], 24); in aesDecr()
302 ror(RevTab0[(x2 >> 24) & 0xff], 0) ^ in aesDecr()
309 ror(RevTab0[(x2 >> 16) & 0xff], 8) ^ in aesDecr()
315 x2 = t2; in aesDecr()
322 (((uint32_t)(RevSbox[(x2 >> 8) & 0xff])) << 8) ^ in aesDecr()
329 (((uint32_t)(RevSbox[(x2 >> 0) & 0xff])) << 0); in aesDecr()
332 (((uint32_t)(RevSbox[(x2 >> 24) & 0xff])) << 24) ^ in aesDecr()
339 (((uint32_t)(RevSbox[(x2 >> 16) & 0xff])) << 16) ^ in aesDecr()