예제 #1
0
파일: v1_s64.cs 프로젝트: xeno-by/libptx
 public v1_s64(reg_s64 x)
 {
     ElementType = s64;
     Elements.Add(x.AssertCast<var>());
 }
예제 #2
0
파일: vector.cs 프로젝트: xeno-by/libptx
 public static v1_s64 v1(reg_s64 x) { return new v1_s64(x); }
예제 #3
0
파일: vector.cs 프로젝트: xeno-by/libptx
 public static v2_s64 v2(reg_s64 x, reg_s64 y) { return new v2_s64(x, y); }
예제 #4
0
파일: v2_s64.cs 프로젝트: xeno-by/libptx
 public v2_s64(reg_s64 x, reg_s64 y)
 {
     ElementType = s64;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
 }