Lines Matching refs:y
26 public byte y; field in Byte3
34 y = initY; in Byte3()
41 this.y = source.y; in Byte3()
52 this.y += a.y; in add()
66 result.y = (byte)(a.y + b.y); in add()
79 y += value; in add()
93 result.y = (byte)(a.y + b); in add()
106 this.y -= a.y; in sub()
120 result.y = (byte)(a.y - b.y); in sub()
133 y -= value; in sub()
147 result.y = (byte)(a.y - b); in sub()
160 this.y *= a.y; in mul()
174 result.y = (byte)(a.y * b.y); in mul()
187 y *= value; in mul()
201 result.y = (byte)(a.y * b); in mul()
214 this.y /= a.y; in div()
228 result.y = (byte)(a.y / b.y); in div()
241 y /= value; in div()
255 result.y = (byte)(a.y / b); in div()
275 this.y = (byte)(-y); in negate()
286 return (byte)((byte)((byte)(x * a.x) + (byte)(y * a.y)) + (byte)(z * a.z)); in dotProduct()
297 return (byte)((byte)((byte)(b.x * a.x) + (byte)(b.y * a.y)) + (byte)(b.z * a.z)); in dotProduct()
308 y += a.y * factor; in addMultiple()
319 this.y = a.y; in set()
332 this.y = b; in setValues()
342 return (byte)(x + y + z); in elementSum()
356 return y; in get()
376 y = value; in setAt()
398 y += value; in addAt()
416 data[offset + 1] = y; in copyTo()