예제 #1
0
파일: v4_b16.cs 프로젝트: xeno-by/libptx
 public v4_b16(reg_b16 x, reg_b16 y, reg_b16 z, reg_b16 w)
 {
     ElementType = b16;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
     Elements.Add(z.AssertCast<var>());
     Elements.Add(w.AssertCast<var>());
 }
예제 #2
0
파일: v2_b16.cs 프로젝트: xeno-by/libptx
 public v2_b16(reg_b16 x, reg_b16 y)
 {
     ElementType = b16;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
 }
예제 #3
0
파일: vector.cs 프로젝트: xeno-by/libptx
 public static v4_b16 v4(reg_b16 x, reg_b16 y, reg_b16 z, reg_b16 w) { return new v4_b16(x, y, z, w); }
예제 #4
0
파일: vector.cs 프로젝트: xeno-by/libptx
 public static v2_b16 v2(reg_b16 x, reg_b16 y) { return new v2_b16(x, y); }
예제 #5
0
파일: vector.cs 프로젝트: xeno-by/libptx
 public static v1_b16 v1(reg_b16 x) { return new v1_b16(x); }
예제 #6
0
파일: v1_b16.cs 프로젝트: xeno-by/libptx
 public v1_b16(reg_b16 x)
 {
     ElementType = b16;
     Elements.Add(x.AssertCast<var>());
 }