Esempio n. 1
0
 public v4_s8(reg_s8 x, reg_s8 y, reg_s8 z, reg_s8 w)
 {
     ElementType = s8;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
     Elements.Add(z.AssertCast<var>());
     Elements.Add(w.AssertCast<var>());
 }
Esempio n. 2
0
 public v1_s8(reg_s8 x)
 {
     ElementType = s8;
     Elements.Add(x.AssertCast<var>());
 }
Esempio n. 3
0
 public v2_s8(reg_s8 x, reg_s8 y)
 {
     ElementType = s8;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
 }
Esempio n. 4
0
 public static v1_s8 v1(reg_s8 x) { return new v1_s8(x); }
Esempio n. 5
0
 public static v4_s8 v4(reg_s8 x, reg_s8 y, reg_s8 z, reg_s8 w) { return new v4_s8(x, y, z, w); }
Esempio n. 6
0
 public static v2_s8 v2(reg_s8 x, reg_s8 y) { return new v2_s8(x, y); }