Ejemplo n.º 1
0
 public v4_s16(reg_s16 x, reg_s16 y, reg_s16 z, reg_s16 w)
 {
     ElementType = s16;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
     Elements.Add(z.AssertCast<var>());
     Elements.Add(w.AssertCast<var>());
 }
Ejemplo n.º 2
0
 public v1_s16(reg_s16 x)
 {
     ElementType = s16;
     Elements.Add(x.AssertCast<var>());
 }
Ejemplo n.º 3
0
 public v2_s16(reg_s16 x, reg_s16 y)
 {
     ElementType = s16;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
 }
Ejemplo n.º 4
0
 public static v4_s16 v4(reg_s16 x, reg_s16 y, reg_s16 z, reg_s16 w) { return new v4_s16(x, y, z, w); }
Ejemplo n.º 5
0
 public static v2_s16 v2(reg_s16 x, reg_s16 y) { return new v2_s16(x, y); }
Ejemplo n.º 6
0
 public static v1_s16 v1(reg_s16 x) { return new v1_s16(x); }