Searched defs:Td4 (Results 1 - 6 of 6) sorted by relevance

/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-internal.c61 Td4[x] = Si[x].[01, 01, 01, 01];
663 const u32 Td4[256] = { variable
/external/wpa_supplicant_8/src/crypto/
H A Daes-internal.c61 Td4[x] = Si[x].[01, 01, 01, 01];
663 const u32 Td4[256] = { variable
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-internal.c61 Td4[x] = Si[x].[01, 01, 01, 01];
663 const u32 Td4[256] = { variable
/external/chromium_org/third_party/boringssl/src/crypto/aes/
H A Daes.c68 * Td4[x] = Si[x].[01]; */
502 static const uint8_t Td4[256] = { variable
1062 s0 = (Td4[(t0 >> 24)] << 24) ^ (Td4[(t3 >> 16) & 0xff] << 16) ^
1063 (Td4[(t2 >> 8) & 0xff] << 8) ^ (Td4[(t1) & 0xff]) ^ rk[0];
1065 s1 = (Td4[(t1 >> 24)] << 24) ^ (Td4[(t0 >> 16) & 0xff] << 16) ^
1066 (Td4[(t3 >> 8) & 0xff] << 8) ^ (Td4[(t
[all...]
/external/openssl/crypto/aes/
H A Daes_core.c53 Td4[x] = Si[x].[01];
585 static const u8 Td4[256] = { variable
1130 (Td4[(t0 >> 24) ] << 24) ^
1131 (Td4[(t3 >> 16) & 0xff] << 16) ^
1132 (Td4[(t2 >> 8) & 0xff] << 8) ^
1133 (Td4[(t1 ) & 0xff]) ^
1137 (Td4[(t1 >> 24) ] << 24) ^
1138 (Td4[(t0 >> 16) & 0xff] << 16) ^
1139 (Td4[(t3 >> 8) & 0xff] << 8) ^
1140 (Td4[(t
[all...]
H A Daes_x86core.c123 Td4[x] = Si[x].[01];
426 static const u8 Td4[256] = { variable
884 prefetch256(Td4);
886 t[0] = Td4[(s0 ) & 0xff] ^
887 Td4[(s3 >> 8) & 0xff] << 8 ^
888 Td4[(s2 >> 16) & 0xff] << 16 ^
889 Td4[(s1 >> 24) ] << 24;
890 t[1] = Td4[(s1 ) & 0xff] ^
891 Td4[(s0 >> 8) & 0xff] << 8 ^
892 Td4[(s
[all...]

Completed in 271 milliseconds