HomeSort by relevance Sort by last modified time
    Searched refs:Te0 (Results 1 - 11 of 11) sorted by null

  /external/wpa_supplicant_8/src/crypto/
aes_i.h 23 extern const u32 Te0[256];
41 #define TE0(i) Te0[((i) >> 24) & 0xff]
77 #define TE0(i) Te0[((i) >> 24) & 0xff]
78 #define TE1(i) rotr(Te0[((i) >> 16) & 0xff], 8)
79 #define TE2(i) rotr(Te0[((i) >> 8) & 0xff], 16)
80 #define TE3(i) rotr(Te0[(i) & 0xff], 24)
81 #define TE41(i) ((Te0[((i) >> 24) & 0xff] << 8) & 0xff000000)
82 #define TE42(i) (Te0[((i) >> 16) & 0xff] & 0x00ff0000
    [all...]
aes-internal.c 58 Te0[x] = S [x].[02, 01, 01, 03];
71 const u32 Te0[256] = {
    [all...]
  /external/openssl/crypto/aes/
aes_core.c 44 Te0[x] = S [x].[02, 01, 01, 03];
56 static const u32 Te0[256] = {
    [all...]
aes_x86core.c 108 Te0[x] = S [x].[02, 01, 01, 03];
113 #define Te0 (u32)((u64*)((u8*)Te+0))
712 t[0] = Te0[(s0 ) & 0xff] ^
717 t[1] = Te0[(s1 ) & 0xff] ^
722 t[2] = Te0[(s2 ) & 0xff] ^
727 t[3] = Te0[(s3 ) & 0xff] ^
778 t[0] = Te0[(s0 ) & 0xff] ^
783 t[1] = Te0[(s1 ) & 0xff] ^
788 t[2] = Te0[(s2 ) & 0xff] ^
793 t[3] = Te0[(s3 ) & 0xff]
    [all...]