示例#1
0
文件: v2_u16.cs 项目: xeno-by/libptx
 public v2_u16(reg_u16 x, reg_u16 y)
 {
     ElementType = u16;
     Elements.Add(x.AssertCast<var>());
     Elements.Add(y.AssertCast<var>());
 }
示例#2
0
文件: vector.cs 项目: xeno-by/libptx
 public static v4_u16 v4(reg_u16 x, reg_u16 y, reg_u16 z, reg_u16 w) { return new v4_u16(x, y, z, w); }
示例#3
0
文件: vector.cs 项目: xeno-by/libptx
 public static v1_u16 v1(reg_u16 x) { return new v1_u16(x); }
示例#4
0
文件: vector.cs 项目: xeno-by/libptx
 public static v2_u16 v2(reg_u16 x, reg_u16 y) { return new v2_u16(x, y); }
示例#5
0
文件: v1_u16.cs 项目: xeno-by/libptx
 public v1_u16(reg_u16 x)
 {
     ElementType = u16;
     Elements.Add(x.AssertCast<var>());
 }