Esempio n. 1
0
 public v1_s64(reg_s64 x)
 {
     ElementType = s64;
     Elements.Add(x.AssertCast<var>());
 }
Esempio n. 2
0
 public static v1_s64 v1(reg_s64 x) { return new v1_s64(x); }
Esempio n. 3
0
 public static v2_s64 v2(reg_s64 x, reg_s64 y) { return new v2_s64(x, y); }
Esempio n. 4
0
 public v2_s64(reg_s64 x, reg_s64 y)
 {
     ElementType = s64;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
 }