Lines Matching refs:Byte2
24 public class Byte2 { class
28 public Byte2() { in Byte2() method in Byte2
31 public Byte2(byte initX, byte initY) { in Byte2() method in Byte2
37 public Byte2(Byte2 source) { in Byte2() method in Byte2
47 public void add(Byte2 a) { in add()
59 public static Byte2 add(Byte2 a, Byte2 b) { in add()
60 Byte2 result = new Byte2(); in add()
84 public static Byte2 add(Byte2 a, byte b) { in add()
85 Byte2 result = new Byte2(); in add()
97 public void sub(Byte2 a) { in sub()
109 public static Byte2 sub(Byte2 a, Byte2 b) { in sub()
110 Byte2 result = new Byte2(); in sub()
134 public static Byte2 sub(Byte2 a, byte b) { in sub()
135 Byte2 result = new Byte2(); in sub()
147 public void mul(Byte2 a) { in mul()
159 public static Byte2 mul(Byte2 a, Byte2 b) { in mul()
160 Byte2 result = new Byte2(); in mul()
184 public static Byte2 mul(Byte2 a, byte b) { in mul()
185 Byte2 result = new Byte2(); in mul()
197 public void div(Byte2 a) { in div()
209 public static Byte2 div(Byte2 a, Byte2 b) { in div()
210 Byte2 result = new Byte2(); in div()
234 public static Byte2 div(Byte2 a, byte b) { in div()
235 Byte2 result = new Byte2(); in div()
265 public byte dotProduct(Byte2 a) { in dotProduct()
276 public static byte dotProduct(Byte2 a, Byte2 b) { in dotProduct()
286 public void addMultiple(Byte2 a, byte factor) { in addMultiple()
296 public void set(Byte2 a) { in set()