Lines Matching refs:x1
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
211 x1 = *src++ ^ *k++; in aesEncr()
221 ror(FwdTab0[(x1 >> 16) & 0xff], 8) ^ in aesEncr()
226 ror(FwdTab0[(x1 >> 24) & 0xff], 0) ^ in aesEncr()
235 ror(FwdTab0[(x1 >> 0) & 0xff], 24); in aesEncr()
240 ror(FwdTab0[(x1 >> 8) & 0xff], 16) ^ in aesEncr()
244 x1 = t1; in aesEncr()
251 (((uint32_t)(FwdSbox[(x1 >> 16) & 0xff])) << 16) ^ in aesEncr()
256 (((uint32_t)(FwdSbox[(x1 >> 24) & 0xff])) << 24) ^ in aesEncr()
265 (((uint32_t)(FwdSbox[(x1 >> 0) & 0xff])) << 0); in aesEncr()
270 (((uint32_t)(FwdSbox[(x1 >> 8) & 0xff])) << 8) ^ in aesEncr()
276 uint32_t x0, x1, x2, x3; in aesDecr() local
281 x1 = *src++ ^ *k++; in aesDecr()
293 ror(RevTab0[(x1 >> 0) & 0xff], 24); in aesDecr()
296 ror(RevTab0[(x1 >> 24) & 0xff], 0) ^ in aesDecr()
303 ror(RevTab0[(x1 >> 16) & 0xff], 8) ^ in aesDecr()
310 ror(RevTab0[(x1 >> 8) & 0xff], 16) ^ in aesDecr()
314 x1 = t1; in aesDecr()
323 (((uint32_t)(RevSbox[(x1 >> 0) & 0xff])) << 0); in aesDecr()
326 (((uint32_t)(RevSbox[(x1 >> 24) & 0xff])) << 24) ^ in aesDecr()
333 (((uint32_t)(RevSbox[(x1 >> 16) & 0xff])) << 16) ^ in aesDecr()
340 (((uint32_t)(RevSbox[(x1 >> 8) & 0xff])) << 8) ^ in aesDecr()