Lines Matching refs:y
30 public byte y; field in Byte4
39 y = initY; in Byte4()
46 this.y = source.y; in Byte4()
58 this.y += a.y; in add()
73 result.y = (byte)(a.y + b.y); in add()
87 y += value; in add()
102 result.y = (byte)(a.y + b); in add()
116 this.y -= a.y; in sub()
131 result.y = (byte)(a.y - b.y); in sub()
145 y -= value; in sub()
160 result.y = (byte)(a.y - b); in sub()
174 this.y *= a.y; in mul()
189 result.y = (byte)(a.y * b.y); in mul()
203 y *= value; in mul()
218 result.y = (byte)(a.y * b); in mul()
232 this.y /= a.y; in div()
247 result.y = (byte)(a.y / b.y); in div()
261 y /= value; in div()
276 result.y = (byte)(a.y / b); in div()
297 this.y = (byte)(-y); in negate()
309 return (byte)((x * a.x) + (y * a.y) + (z * a.z) + (w * a.w)); in dotProduct()
320 return (byte)((b.x * a.x) + (b.y * a.y) + (b.z * a.z) + (b.w * a.w)); in dotProduct()
331 y += a.y * factor; in addMultiple()
343 this.y = a.y; in set()
358 this.y = b; in setValues()
369 return (byte)(x + y + z + w); in elementSum()
383 return y; in get()
405 y = value; in setAt()
430 y += value; in addAt()
451 data[offset + 1] = y; in copyTo()