Searched refs:encrypt_round (Results 1 – 3 of 3) sorted by relevance
/arch/x86/crypto/ |
D | aes-x86_64-asm_64.S | 140 #define encrypt_round(TAB,OFFSET) \ macro 157 encrypt_round(crypto_ft_tab,-96) 158 encrypt_round(crypto_ft_tab,-80) 159 enc192: encrypt_round(crypto_ft_tab,-64) 160 encrypt_round(crypto_ft_tab,-48) 161 enc128: encrypt_round(crypto_ft_tab,-32) 162 encrypt_round(crypto_ft_tab,-16) 163 encrypt_round(crypto_ft_tab, 0) 164 encrypt_round(crypto_ft_tab, 16) 165 encrypt_round(crypto_ft_tab, 32) [all …]
|
D | twofish-x86_64-asm_64.S | 78 #define encrypt_round(a,b,c,d,round)\ macro 243 encrypt_round(R0,R1,R2,R3,0); 244 encrypt_round(R2,R3,R0,R1,8); 245 encrypt_round(R0,R1,R2,R3,2*8); 246 encrypt_round(R2,R3,R0,R1,3*8); 247 encrypt_round(R0,R1,R2,R3,4*8); 248 encrypt_round(R2,R3,R0,R1,5*8); 249 encrypt_round(R0,R1,R2,R3,6*8); 250 encrypt_round(R2,R3,R0,R1,7*8); 251 encrypt_round(R0,R1,R2,R3,8*8); [all …]
|
D | twofish-i586-asm_32.S | 79 #define encrypt_round(a,b,c,d,round)\ macro 247 encrypt_round(R0,R1,R2,R3,0); 248 encrypt_round(R2,R3,R0,R1,8); 249 encrypt_round(R0,R1,R2,R3,2*8); 250 encrypt_round(R2,R3,R0,R1,3*8); 251 encrypt_round(R0,R1,R2,R3,4*8); 252 encrypt_round(R2,R3,R0,R1,5*8); 253 encrypt_round(R0,R1,R2,R3,6*8); 254 encrypt_round(R2,R3,R0,R1,7*8); 255 encrypt_round(R0,R1,R2,R3,8*8); [all …]
|