Searched refs:encrypt_round (Results 1 – 4 of 4) sorted by relevance
| /Linux-v4.19/arch/x86/crypto/ |
| D | aes-x86_64-asm_64.S | 135 #define encrypt_round(TAB,OFFSET) \ macro 152 encrypt_round(crypto_ft_tab,-96) 153 encrypt_round(crypto_ft_tab,-80) 154 .Le192: encrypt_round(crypto_ft_tab,-64) 155 encrypt_round(crypto_ft_tab,-48) 156 .Le128: encrypt_round(crypto_ft_tab,-32) 157 encrypt_round(crypto_ft_tab,-16) 158 encrypt_round(crypto_ft_tab, 0) 159 encrypt_round(crypto_ft_tab, 16) 160 encrypt_round(crypto_ft_tab, 32) [all …]
|
| D | twofish-x86_64-asm_64.S | 79 #define encrypt_round(a,b,c,d,round)\ macro 239 encrypt_round(R0,R1,R2,R3,0); 240 encrypt_round(R2,R3,R0,R1,8); 241 encrypt_round(R0,R1,R2,R3,2*8); 242 encrypt_round(R2,R3,R0,R1,3*8); 243 encrypt_round(R0,R1,R2,R3,4*8); 244 encrypt_round(R2,R3,R0,R1,5*8); 245 encrypt_round(R0,R1,R2,R3,6*8); 246 encrypt_round(R2,R3,R0,R1,7*8); 247 encrypt_round(R0,R1,R2,R3,8*8); [all …]
|
| D | twofish-i586-asm_32.S | 80 #define encrypt_round(a,b,c,d,round)\ macro 244 encrypt_round(R0,R1,R2,R3,0); 245 encrypt_round(R2,R3,R0,R1,8); 246 encrypt_round(R0,R1,R2,R3,2*8); 247 encrypt_round(R2,R3,R0,R1,3*8); 248 encrypt_round(R0,R1,R2,R3,4*8); 249 encrypt_round(R2,R3,R0,R1,5*8); 250 encrypt_round(R0,R1,R2,R3,6*8); 251 encrypt_round(R2,R3,R0,R1,7*8); 252 encrypt_round(R0,R1,R2,R3,8*8); [all …]
|
| D | twofish-avx-x86_64-asm_64.S | 192 #define encrypt_round(n, a, b, c, d, preload, prerotate) \ macro 209 encrypt_round((2*n), RA, RB, RC, RD, preload_rgi, rotate_1l); \ 210 encrypt_round(((2*n) + 1), RC, RD, RA, RB, preload_rgi, rotate_1l); 213 encrypt_round((2*n), RA, RB, RC, RD, preload_rgi, rotate_1l); \ 214 encrypt_round(((2*n) + 1), RC, RD, RA, RB, dummy, dummy);
|