Example #1
0
        public static Int128 operator >>(Int128 a, int b)
        {
            Int128 c;

            UInt128.ArithmeticRightShift(out c.v, ref a.v, b);
            return(c);
        }
Example #2
0
 public static void RightShift(ref Int128 c)
 {
     UInt128.ArithmeticRightShift(ref c.v);
 }
Example #3
0
 public static void RightShift(ref Int128 c, int d)
 {
     UInt128.ArithmeticRightShift(ref c.v, d);
 }