Exemplo n.º 1
0
 public v4_b8(reg_b8 x, reg_b8 y, reg_b8 z, reg_b8 w)
 {
     ElementType = b8;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
     Elements.Add(z.AssertCast<var>());
     Elements.Add(w.AssertCast<var>());
 }
Exemplo n.º 2
0
 public v1_b8(reg_b8 x)
 {
     ElementType = b8;
     Elements.Add(x.AssertCast<var>());
 }
Exemplo n.º 3
0
 public static v4_b8 v4(reg_b8 x, reg_b8 y, reg_b8 z, reg_b8 w) { return new v4_b8(x, y, z, w); }
Exemplo n.º 4
0
 public static v2_b8 v2(reg_b8 x, reg_b8 y) { return new v2_b8(x, y); }
Exemplo n.º 5
0
 public static v1_b8 v1(reg_b8 x) { return new v1_b8(x); }
Exemplo n.º 6
0
 public v2_b8(reg_b8 x, reg_b8 y)
 {
     ElementType = b8;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
 }