public static void SingleRound(ref uint x, ref uint y, uint z, int count) { y = Operations.RotateLeft((y ^ (x += z)), count); }