Searched refs:encrypt_round (Results 1 – 3 of 3) sorted by relevance
/Linux-v6.6/arch/x86/crypto/ |
D | twofish-x86_64-asm_64.S | 66 #define encrypt_round(a,b,c,d,round)\ macro 226 encrypt_round(R0,R1,R2,R3,0); 227 encrypt_round(R2,R3,R0,R1,8); 228 encrypt_round(R0,R1,R2,R3,2*8); 229 encrypt_round(R2,R3,R0,R1,3*8); 230 encrypt_round(R0,R1,R2,R3,4*8); 231 encrypt_round(R2,R3,R0,R1,5*8); 232 encrypt_round(R0,R1,R2,R3,6*8); 233 encrypt_round(R2,R3,R0,R1,7*8); 234 encrypt_round(R0,R1,R2,R3,8*8); [all …]
|
D | twofish-i586-asm_32.S | 67 #define encrypt_round(a,b,c,d,round)\ macro 231 encrypt_round(R0,R1,R2,R3,0); 232 encrypt_round(R2,R3,R0,R1,8); 233 encrypt_round(R0,R1,R2,R3,2*8); 234 encrypt_round(R2,R3,R0,R1,3*8); 235 encrypt_round(R0,R1,R2,R3,4*8); 236 encrypt_round(R2,R3,R0,R1,5*8); 237 encrypt_round(R0,R1,R2,R3,6*8); 238 encrypt_round(R2,R3,R0,R1,7*8); 239 encrypt_round(R0,R1,R2,R3,8*8); [all …]
|
D | twofish-avx-x86_64-asm_64.S | 172 #define encrypt_round(n, a, b, c, d, preload, prerotate) \ macro 189 encrypt_round((2*n), RA, RB, RC, RD, preload_rgi, rotate_1l); \ 190 encrypt_round(((2*n) + 1), RC, RD, RA, RB, preload_rgi, rotate_1l); 193 encrypt_round((2*n), RA, RB, RC, RD, preload_rgi, rotate_1l); \ 194 encrypt_round(((2*n) + 1), RC, RD, RA, RB, dummy, dummy);
|