Lines Matching refs:y
26 public byte y; field in Byte2
33 y = initY; in Byte2()
39 this.y = source.y; in Byte2()
49 this.y += a.y; in add()
62 result.y = (byte)(a.y + b.y); in add()
74 y += value; in add()
87 result.y = (byte)(a.y + b); in add()
99 this.y -= a.y; in sub()
112 result.y = (byte)(a.y - b.y); in sub()
124 y -= value; in sub()
137 result.y = (byte)(a.y - b); in sub()
149 this.y *= a.y; in mul()
162 result.y = (byte)(a.y * b.y); in mul()
174 y *= value; in mul()
187 result.y = (byte)(a.y * b); in mul()
199 this.y /= a.y; in div()
212 result.y = (byte)(a.y / b.y); in div()
224 y /= value; in div()
237 result.y = (byte)(a.y / b); in div()
256 this.y = (byte)(-y); in negate()
266 return (byte)((x * a.x) + (y * a.y)); in dotProduct()
277 return (byte)((b.x * a.x) + (b.y * a.y)); in dotProduct()
288 y += a.y * factor; in addMultiple()
298 this.y = a.y; in set()
309 this.y = b; in setValues()
318 return (byte)(x + y); in elementSum()
332 return y; in get()
350 y = value; in setAt()
369 y += value; in addAt()
384 data[offset + 1] = y; in copyTo()