Exemple #1
0
 public v4_b32(reg_b32 x, reg_b32 y, reg_b32 z, reg_b32 w)
 {
     ElementType = b32;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
     Elements.Add(z.AssertCast<var>());
     Elements.Add(w.AssertCast<var>());
 }
Exemple #2
0
 public static v4_b32 v4(reg_b32 x, reg_b32 y, reg_b32 z, reg_b32 w) { return new v4_b32(x, y, z, w); }
Exemple #3
0
 public static v2_b32 v2(reg_b32 x, reg_b32 y) { return new v2_b32(x, y); }
Exemple #4
0
 public static v1_b32 v1(reg_b32 x) { return new v1_b32(x); }
Exemple #5
0
 public v2_b32(reg_b32 x, reg_b32 y)
 {
     ElementType = b32;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
 }
Exemple #6
0
 public v1_b32(reg_b32 x)
 {
     ElementType = b32;
     Elements.Add(x.AssertCast<var>());
 }