コード例 #1
0
ファイル: vector.cs プロジェクト: xeno-by/libptx
 public static v2_u64 v2(reg_u64 x, reg_u64 y) { return new v2_u64(x, y); }
コード例 #2
0
ファイル: v2_u64.cs プロジェクト: xeno-by/libptx
 public v2_u64(reg_u64 x, reg_u64 y)
 {
     ElementType = u64;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
 }
コード例 #3
0
ファイル: vector.cs プロジェクト: xeno-by/libptx
 public static v1_u64 v1(reg_u64 x) { return new v1_u64(x); }
コード例 #4
0
ファイル: v1_u64.cs プロジェクト: xeno-by/libptx
 public v1_u64(reg_u64 x)
 {
     ElementType = u64;
     Elements.Add(x.AssertCast<var>());
 }