Searched refs:Td4 (Results 1 - 11 of 11) sorted by relevance

/freebsd-13-stable/crypto/openssl/crypto/aes/
H A Daes_x86core.c127 Td4[x] = Si[x].[01];
430 static const u8 Td4[256] = { variable
893 prefetch256(Td4);
895 t[0] = (u32)Td4[(s0 ) & 0xff] ^
896 (u32)Td4[(s3 >> 8) & 0xff] << 8 ^
897 (u32)Td4[(s2 >> 16) & 0xff] << 16 ^
898 (u32)Td4[(s1 >> 24) ] << 24;
899 t[1] = (u32)Td4[(s1 ) & 0xff] ^
900 (u32)Td4[(s0 >> 8) & 0xff] << 8 ^
901 (u32)Td4[(s
[all...]
H A Daes_core.c687 Td4[x] = Si[x].[01];
1219 static const u8 Td4[256] = { variable
1767 ((u32)Td4[(t0 >> 24) ] << 24) ^
1768 ((u32)Td4[(t3 >> 16) & 0xff] << 16) ^
1769 ((u32)Td4[(t2 >> 8) & 0xff] << 8) ^
1770 ((u32)Td4[(t1 ) & 0xff]) ^
1774 ((u32)Td4[(t1 >> 24) ] << 24) ^
1775 ((u32)Td4[(t0 >> 16) & 0xff] << 16) ^
1776 ((u32)Td4[(t3 >> 8) & 0xff] << 8) ^
1777 ((u32)Td4[(t
[all...]
/freebsd-13-stable/contrib/wpa/src/crypto/
H A Daes_i.h26 extern const u32 Td4[256];
57 #define TD41(i) (Td4[((i) >> 24) & 0xff] & 0xff000000)
58 #define TD42(i) (Td4[((i) >> 16) & 0xff] & 0x00ff0000)
59 #define TD43(i) (Td4[((i) >> 8) & 0xff] & 0x0000ff00)
60 #define TD44(i) (Td4[(i) & 0xff] & 0x000000ff)
H A Daes-internal.c61 Td4[x] = Si[x].[01, 01, 01, 01];
663 const u32 Td4[256] = { variable
/freebsd-13-stable/sys/contrib/openzfs/module/icp/algs/aes/
H A Daes_impl_generic.c77 * Td4[x] = Si[x].[01, 01, 01, 01];
699 static const uint32_t Td4[256] = variable
1189 s0 = (Td4[t0 >> 24] & 0xff000000) ^
1190 (Td4[(t3 >> 16) & 0xff] & 0x00ff0000) ^
1191 (Td4[(t2 >> 8) & 0xff] & 0x0000ff00) ^
1192 (Td4[t1 & 0xff] & 0x000000ff) ^
1196 s1 = (Td4[t1 >> 24] & 0xff000000) ^
1197 (Td4[(t0 >> 16) & 0xff] & 0x00ff0000) ^
1198 (Td4[(t3 >> 8) & 0xff] & 0x0000ff00) ^
1199 (Td4[t
[all...]
/freebsd-13-stable/sys/crypto/openssl/arm/
H A Daes-armv4.S900 @ Td4[256]
1129 ldr r5,[r10,#0] @ prefetch Td4
1138 ldrb r0,[r10,r0] @ Td4[s0>>24]
1139 ldrb r4,[r10,r7] @ Td4[s0>>16]
1141 ldrb r5,[r10,r8] @ Td4[s0>>8]
1143 ldrb r6,[r10,r9] @ Td4[s0>>0]
1147 ldrb r7,[r10,r7] @ Td4[s1>>0]
1148 ldrb r1,[r1] @ Td4[s1>>24]
1149 ldrb r8,[r10,r8] @ Td4[s1>>16]
1151 ldrb r9,[r10,r9] @ Td4[s
[all...]
/freebsd-13-stable/sys/crypto/rijndael/
H A Drijndael-alg-fst.c54 Td4[x] = Si[x].[01, 01, 01, 01];
653 static const u32 Td4[256] = { variable
1196 (Td4[(t0 >> 24) ] & 0xff000000) ^
1197 (Td4[(t3 >> 16) & 0xff] & 0x00ff0000) ^
1198 (Td4[(t2 >> 8) & 0xff] & 0x0000ff00) ^
1199 (Td4[(t1 ) & 0xff] & 0x000000ff) ^
1203 (Td4[(t1 >> 24) ] & 0xff000000) ^
1204 (Td4[(t0 >> 16) & 0xff] & 0x00ff0000) ^
1205 (Td4[(t3 >> 8) & 0xff] & 0x0000ff00) ^
1206 (Td4[(t
[all...]
/freebsd-13-stable/crypto/openssh/
H A Drijndael.c48 Td4[x] = Si[x].[01];
580 static const u8 Td4[256] = {
1101 (Td4[(t0 >> 24) ] << 24) ^
1102 (Td4[(t3 >> 16) & 0xff] << 16) ^
1103 (Td4[(t2 >> 8) & 0xff] << 8) ^
1104 (Td4[(t1 ) & 0xff]) ^
1108 (Td4[(t1 >> 24) ] << 24) ^
1109 (Td4[(t0 >> 16) & 0xff] << 16) ^
1110 (Td4[(t3 >> 8) & 0xff] << 8) ^
1111 (Td4[(t
[all...]
/freebsd-13-stable/crypto/openssl/crypto/aes/asm/
H A Daes-armv4.pl935 @ Td4[256]
1164 ldr $t2,[$tbl,#0] @ prefetch Td4
1173 ldrb $s0,[$tbl,$s0] @ Td4[s0>>24]
1174 ldrb $t1,[$tbl,$i1] @ Td4[s0>>16]
1176 ldrb $t2,[$tbl,$i2] @ Td4[s0>>8]
1178 ldrb $t3,[$tbl,$i3] @ Td4[s0>>0]
1182 ldrb $i1,[$tbl,$i1] @ Td4[s1>>0]
1183 ldrb $s1,[$s1] @ Td4[s1>>24]
1184 ldrb $i2,[$tbl,$i2] @ Td4[s1>>16]
1186 ldrb $i3,[$tbl,$i3] @ Td4[s
[all...]
H A Daes-ppc.pl1090 lwz $acc08,`2048+0`($Tbl0) ! prefetch Td4
H A Daes-c64xplus.pl424 ADD.D ${TEA},A0,${TEA} ; point to Td4

Completed in 258 milliseconds