aes_inv_sbox       50 lib/crypto/aes.c static volatile const u8 __cacheline_aligned aes_inv_sbox[] = {
aes_inv_sbox       86 lib/crypto/aes.c extern const u8 crypto_aes_inv_sbox[256] __alias(aes_inv_sbox);
aes_inv_sbox      157 lib/crypto/aes.c 	return (aes_inv_sbox[in[pos] & 0xff]) ^
aes_inv_sbox      158 lib/crypto/aes.c 	       (aes_inv_sbox[(in[(pos + 3) % 4] >>  8) & 0xff] <<  8) ^
aes_inv_sbox      159 lib/crypto/aes.c 	       (aes_inv_sbox[(in[(pos + 2) % 4] >> 16) & 0xff] << 16) ^
aes_inv_sbox      160 lib/crypto/aes.c 	       (aes_inv_sbox[(in[(pos + 1) % 4] >> 24) & 0xff] << 24);
aes_inv_sbox      327 lib/crypto/aes.c 	st0[0] ^= aes_inv_sbox[ 0] ^ aes_inv_sbox[ 64] ^ aes_inv_sbox[129] ^ aes_inv_sbox[200];
aes_inv_sbox      328 lib/crypto/aes.c 	st0[1] ^= aes_inv_sbox[16] ^ aes_inv_sbox[ 83] ^ aes_inv_sbox[150] ^ aes_inv_sbox[212];
aes_inv_sbox      329 lib/crypto/aes.c 	st0[2] ^= aes_inv_sbox[32] ^ aes_inv_sbox[ 96] ^ aes_inv_sbox[160] ^ aes_inv_sbox[236];
aes_inv_sbox      330 lib/crypto/aes.c 	st0[3] ^= aes_inv_sbox[48] ^ aes_inv_sbox[112] ^ aes_inv_sbox[187] ^ aes_inv_sbox[247];