Lines Matching refs:y
33 public short y; field in Short2
40 this.x = this.y = i; in Short2()
43 public Short2(short x, short y) { in Short2() argument
45 this.y = y; in Short2()
51 this.y = source.y; in Short2()
61 this.y += a.y; in add()
74 result.y = (short)(a.y + b.y); in add()
86 y += value; in add()
99 result.y = (short)(a.y + b); in add()
111 this.y -= a.y; in sub()
124 result.y = (short)(a.y - b.y); in sub()
136 y -= value; in sub()
149 result.y = (short)(a.y - b); in sub()
161 this.y *= a.y; in mul()
174 result.y = (short)(a.y * b.y); in mul()
186 y *= value; in mul()
199 result.y = (short)(a.y * b); in mul()
211 this.y /= a.y; in div()
224 result.y = (short)(a.y / b.y); in div()
236 y /= value; in div()
249 result.y = (short)(a.y / b); in div()
261 this.y %= a.y; in mod()
274 result.y = (short)(a.y % b.y); in mod()
286 y %= value; in mod()
299 result.y = (short)(a.y % b); in mod()
318 this.y = (short)(-y); in negate()
328 return (short)((x * a.x) + (y * a.y)); in dotProduct()
339 return (short)((b.x * a.x) + (b.y * a.y)); in dotProduct()
350 y += a.y * factor; in addMultiple()
360 this.y = a.y; in set()
371 this.y = b; in setValues()
380 return (short)(x + y); in elementSum()
394 return (short)(y); in get()
412 y = value; in setAt()
431 y += value; in addAt()
446 data[offset + 1] = (short)(y); in copyTo()