Lines Matching refs:Byte2
28 public class Byte2 { class
32 public Byte2() { in Byte2() method in Byte2
35 public Byte2(byte initX, byte initY) { in Byte2() method in Byte2
41 public Byte2(Byte2 source) { in Byte2() method in Byte2
51 public void add(Byte2 a) { in add()
63 public static Byte2 add(Byte2 a, Byte2 b) { in add()
64 Byte2 result = new Byte2(); in add()
88 public static Byte2 add(Byte2 a, byte b) { in add()
89 Byte2 result = new Byte2(); in add()
101 public void sub(Byte2 a) { in sub()
113 public static Byte2 sub(Byte2 a, Byte2 b) { in sub()
114 Byte2 result = new Byte2(); in sub()
138 public static Byte2 sub(Byte2 a, byte b) { in sub()
139 Byte2 result = new Byte2(); in sub()
151 public void mul(Byte2 a) { in mul()
163 public static Byte2 mul(Byte2 a, Byte2 b) { in mul()
164 Byte2 result = new Byte2(); in mul()
188 public static Byte2 mul(Byte2 a, byte b) { in mul()
189 Byte2 result = new Byte2(); in mul()
201 public void div(Byte2 a) { in div()
213 public static Byte2 div(Byte2 a, Byte2 b) { in div()
214 Byte2 result = new Byte2(); in div()
238 public static Byte2 div(Byte2 a, byte b) { in div()
239 Byte2 result = new Byte2(); in div()
269 public byte dotProduct(Byte2 a) { in dotProduct()
280 public static byte dotProduct(Byte2 a, Byte2 b) { in dotProduct()
290 public void addMultiple(Byte2 a, byte factor) { in addMultiple()
300 public void set(Byte2 a) { in set()