Lines Matching refs:x0
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
210 x0 = *src++ ^ *k++; in aesEncr()
220 ror(FwdTab0[(x0 >> 24) & 0xff], 0) ^ in aesEncr()
229 ror(FwdTab0[(x0 >> 0) & 0xff], 24); in aesEncr()
234 ror(FwdTab0[(x0 >> 8) & 0xff], 16) ^ in aesEncr()
239 ror(FwdTab0[(x0 >> 16) & 0xff], 8) ^ in aesEncr()
243 x0 = t0; in aesEncr()
250 (((uint32_t)(FwdSbox[(x0 >> 24) & 0xff])) << 24) ^ in aesEncr()
259 (((uint32_t)(FwdSbox[(x0 >> 0) & 0xff])) << 0); in aesEncr()
264 (((uint32_t)(FwdSbox[(x0 >> 8) & 0xff])) << 8) ^ in aesEncr()
269 (((uint32_t)(FwdSbox[(x0 >> 16) & 0xff])) << 16) ^ in aesEncr()
276 uint32_t x0, x1, x2, x3; in aesDecr() local
280 x0 = *src++ ^ *k++; in aesDecr()
290 ror(RevTab0[(x0 >> 24) & 0xff], 0) ^ in aesDecr()
297 ror(RevTab0[(x0 >> 16) & 0xff], 8) ^ in aesDecr()
304 ror(RevTab0[(x0 >> 8) & 0xff], 16) ^ in aesDecr()
311 ror(RevTab0[(x0 >> 0) & 0xff], 24); in aesDecr()
313 x0 = t0; in aesDecr()
320 (((uint32_t)(RevSbox[(x0 >> 24) & 0xff])) << 24) ^ in aesDecr()
327 (((uint32_t)(RevSbox[(x0 >> 16) & 0xff])) << 16) ^ in aesDecr()
334 (((uint32_t)(RevSbox[(x0 >> 8) & 0xff])) << 8) ^ in aesDecr()
341 (((uint32_t)(RevSbox[(x0 >> 0) & 0xff])) << 0); in aesDecr()