Lines Matching refs:x3
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
213 x3 = *src++ ^ *k++; in aesEncr()
223 ror(FwdTab0[(x3 >> 0) & 0xff], 24); in aesEncr()
228 ror(FwdTab0[(x3 >> 8) & 0xff], 16) ^ in aesEncr()
233 ror(FwdTab0[(x3 >> 16) & 0xff], 8) ^ in aesEncr()
237 x3 = *k++ ^ in aesEncr()
238 ror(FwdTab0[(x3 >> 24) & 0xff], 0) ^ in aesEncr()
253 (((uint32_t)(FwdSbox[(x3 >> 0) & 0xff])) << 0); in aesEncr()
258 (((uint32_t)(FwdSbox[(x3 >> 8) & 0xff])) << 8) ^ in aesEncr()
263 (((uint32_t)(FwdSbox[(x3 >> 16) & 0xff])) << 16) ^ in aesEncr()
268 (((uint32_t)(FwdSbox[(x3 >> 24) & 0xff])) << 24) ^ in aesEncr()
276 uint32_t x0, x1, x2, x3; in aesDecr() local
283 x3 = *src++ ^ *k++; in aesDecr()
291 ror(RevTab0[(x3 >> 16) & 0xff], 8) ^ in aesDecr()
298 ror(RevTab0[(x3 >> 8) & 0xff], 16) ^ in aesDecr()
305 ror(RevTab0[(x3 >> 0) & 0xff], 24); in aesDecr()
307 x3 = *k++ ^ in aesDecr()
308 ror(RevTab0[(x3 >> 24) & 0xff], 0) ^ in aesDecr()
321 (((uint32_t)(RevSbox[(x3 >> 16) & 0xff])) << 16) ^ in aesDecr()
328 (((uint32_t)(RevSbox[(x3 >> 8) & 0xff])) << 8) ^ in aesDecr()
335 (((uint32_t)(RevSbox[(x3 >> 0) & 0xff])) << 0); in aesDecr()
338 (((uint32_t)(RevSbox[(x3 >> 24) & 0xff])) << 24) ^ in aesDecr()