Lines Matching refs:RevSbox
45 static const uint8_t RevSbox[] = { variable
320 (((uint32_t)(RevSbox[(x0 >> 24) & 0xff])) << 24) ^ in aesDecr()
321 (((uint32_t)(RevSbox[(x3 >> 16) & 0xff])) << 16) ^ in aesDecr()
322 (((uint32_t)(RevSbox[(x2 >> 8) & 0xff])) << 8) ^ in aesDecr()
323 (((uint32_t)(RevSbox[(x1 >> 0) & 0xff])) << 0); in aesDecr()
326 (((uint32_t)(RevSbox[(x1 >> 24) & 0xff])) << 24) ^ in aesDecr()
327 (((uint32_t)(RevSbox[(x0 >> 16) & 0xff])) << 16) ^ in aesDecr()
328 (((uint32_t)(RevSbox[(x3 >> 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()
333 (((uint32_t)(RevSbox[(x1 >> 16) & 0xff])) << 16) ^ in aesDecr()
334 (((uint32_t)(RevSbox[(x0 >> 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()
339 (((uint32_t)(RevSbox[(x2 >> 16) & 0xff])) << 16) ^ in aesDecr()
340 (((uint32_t)(RevSbox[(x1 >> 8) & 0xff])) << 8) ^ in aesDecr()
341 (((uint32_t)(RevSbox[(x0 >> 0) & 0xff])) << 0); in aesDecr()