Lines Matching refs:y
30 public byte y; field in Byte2
37 y = initY; in Byte2()
43 this.y = source.y; in Byte2()
53 this.y += a.y; in add()
66 result.y = (byte)(a.y + b.y); in add()
78 y += value; in add()
91 result.y = (byte)(a.y + b); in add()
103 this.y -= a.y; in sub()
116 result.y = (byte)(a.y - b.y); in sub()
128 y -= value; in sub()
141 result.y = (byte)(a.y - b); in sub()
153 this.y *= a.y; in mul()
166 result.y = (byte)(a.y * b.y); in mul()
178 y *= value; in mul()
191 result.y = (byte)(a.y * b); in mul()
203 this.y /= a.y; in div()
216 result.y = (byte)(a.y / b.y); in div()
228 y /= value; in div()
241 result.y = (byte)(a.y / b); in div()
260 this.y = (byte)(-y); in negate()
270 return (byte)((x * a.x) + (y * a.y)); in dotProduct()
281 return (byte)((b.x * a.x) + (b.y * a.y)); in dotProduct()
292 y += a.y * factor; in addMultiple()
302 this.y = a.y; in set()
313 this.y = b; in setValues()
322 return (byte)(x + y); in elementSum()
336 return y; in get()
354 y = value; in setAt()
373 y += value; in addAt()
388 data[offset + 1] = y; in copyTo()