Lines Matching refs:Byte4
24 public class Byte4 { class
30 public Byte4() { in Byte4() method in Byte4
33 public Byte4(byte initX, byte initY, byte initZ, byte initW) { in Byte4() method in Byte4
40 public Byte4(Byte4 source) { in Byte4() method in Byte4
52 public void add(Byte4 a) { in add()
66 public static Byte4 add(Byte4 a, Byte4 b) { in add()
67 Byte4 result = new Byte4(); in add()
95 public static Byte4 add(Byte4 a, byte b) { in add()
96 Byte4 result = new Byte4(); in add()
110 public void sub(Byte4 a) { in sub()
124 public static Byte4 sub(Byte4 a, Byte4 b) { in sub()
125 Byte4 result = new Byte4(); in sub()
153 public static Byte4 sub(Byte4 a, byte b) { in sub()
154 Byte4 result = new Byte4(); in sub()
168 public void mul(Byte4 a) { in mul()
182 public static Byte4 mul(Byte4 a, Byte4 b) { in mul()
183 Byte4 result = new Byte4(); in mul()
211 public static Byte4 mul(Byte4 a, byte b) { in mul()
212 Byte4 result = new Byte4(); in mul()
226 public void div(Byte4 a) { in div()
240 public static Byte4 div(Byte4 a, Byte4 b) { in div()
241 Byte4 result = new Byte4(); in div()
269 public static Byte4 div(Byte4 a, byte b) { in div()
270 Byte4 result = new Byte4(); in div()
304 public byte dotProduct(Byte4 a) { in dotProduct()
315 public static byte dotProduct(Byte4 a, Byte4 b) { in dotProduct()
325 public void addMultiple(Byte4 a, byte factor) { in addMultiple()
337 public void set(Byte4 a) { in set()