Home | History | Annotate | Download | only in asm

Lines Matching full:tp1

1291 	 &xor	($tp2,$s[$i]);	# tp2^tp1
1302 &xor ($tp4,$s[$i]); # tp4^tp1
1303 &rotl ($s[$i],8); # = ROTATE(tp1,8)
1312 &xor ($s[$i],$tp8); # ^= tp8^(tp4^tp1)^(tp2^tp1)
1314 &xor ($s[$i],$tp2); # ^= ROTATE(tp8^tp2^tp1,24)
1315 &xor ($s[$i],$tp4); # ^= ROTATE(tp8^tp4^tp1,16)
2865 { my ($i,$key,$tp1,$tp2,$tp4,$tp8) = @_;
2868 &mov ($acc,$tp1);
2872 &lea ($tp2,&DWP(0,$tp1,$tp1));
2886 &xor ($tp2,$tp1); # tp2^tp1
2894 &xor ($tp4,$tp1); # tp4^tp1
2898 &rotl ($tp1,8); # = ROTATE(tp1,8)
2903 &xor ($tp1,$tp2);
2905 &xor ($tp1,$tp4);
2908 &xor ($tp1,$tp8); # ^= tp8^(tp4^tp1)^(tp2^tp1)
2910 &xor ($tp1,$tp2); # ^= ROTATE(tp8^tp2^tp1,24)
2912 &xor ($tp1,$tp4); # ^= ROTATE(tp8^tp4^tp1,16)
2914 &xor ($tp1,$tp8); # ^= ROTATE(tp8,8)
2916 &mov (&DWP(4*$i,$key),$tp1);