예제 #1
0
 public static Vector128 <short> op_LessThanOrEqual(Vector128 <short> left, Vector128 <short> right)
 => op_LessThan(left, right) | op_Equality(left, right);
예제 #2
0
 public static Vector128 <short> op_LeftShift(Vector128 <short> vector, byte count)
 => Sse2.ShiftLeftLogical(vector, count);
예제 #3
0
 public static Vector128 <short> op_GreaterThan(Vector128 <short> left, Vector128 <short> right)
 => Sse2.CompareGreaterThan(left, right);
예제 #4
0
 public static Vector128 <short> op_LessThan(Vector128 <short> left, Vector128 <short> right)
 => Sse2.CompareLessThan(left, right);
예제 #5
0
 public static Vector128 <short> op_Equality(Vector128 <short> left, Vector128 <short> right)
 => Sse2.CompareEqual(left, right);
예제 #6
0
 public static Vector128 <short> op_Inequality(Vector128 <short> left, Vector128 <short> right)
 => ~op_Equality(left, right);
예제 #7
0
 public static Vector128 <short> op_Multiply(Vector128 <short> left, Vector128 <short> right)
 => Sse2.MultiplyLow(left, right);
예제 #8
0
 public static Vector128 <short> op_Multiply(short scalar, Vector128 <short> vector)
 => op_Multiply(vector, Vector128.Create(scalar));
예제 #9
0
 public static Vector128 <short> op_Addition(Vector128 <short> left, Vector128 <short> right)
 => Sse2.Add(left, right);
예제 #10
0
 public static Vector128 <short> op_Subtraction(Vector128 <short> left, Vector128 <short> right)
 => Sse2.Subtract(left, right);
예제 #11
0
 public static Vector128 <short> op_UnaryNegation(Vector128 <short> v)
 => Sse2.Subtract(new Vector128 <short>(), v);
예제 #12
0
 public static Vector128 <short> op_LeftShift(Vector128 <short> vector, Vector128 <short> count)
 => op_LeftShift(vector, count.As <ushort>());
예제 #13
0
 public static Vector128 <short> op_RightShift(Vector128 <short> vector, Vector128 <ushort> count)
 => op_RightShift(vector.As <ushort>(), count).As <short>();
예제 #14
0
 public static Vector128 <short> op_UnaryPlus(Vector128 <short> v) => v;
예제 #15
0
 public static Vector128 <short> op_LeftShift(Vector128 <short> vector, sbyte count)
 => op_LeftShift(vector, (byte)count);