Searched refs:encrypt_round (Results 1 – 3 of 3) sorted by relevance
/linux-2.6.39/arch/x86/crypto/ |
D | aes-x86_64-asm_64.S | 138 #define encrypt_round(TAB,OFFSET) \ macro 155 encrypt_round(crypto_ft_tab,-96) 156 encrypt_round(crypto_ft_tab,-80) 157 enc192: encrypt_round(crypto_ft_tab,-64) 158 encrypt_round(crypto_ft_tab,-48) 159 enc128: encrypt_round(crypto_ft_tab,-32) 160 encrypt_round(crypto_ft_tab,-16) 161 encrypt_round(crypto_ft_tab, 0) 162 encrypt_round(crypto_ft_tab, 16) 163 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 …]
|