Lines Matching refs:y
30 public short y; field in Short3
38 this.x = this.y = this.z = i; in Short3()
41 public Short3(short x, short y, short z) { in Short3() argument
43 this.y = y; in Short3()
50 this.y = source.y; in Short3()
61 this.y += a.y; in add()
75 result.y = (short)(a.y + b.y); in add()
88 y += value; in add()
102 result.y = (short)(a.y + b); in add()
115 this.y -= a.y; in sub()
129 result.y = (short)(a.y - b.y); in sub()
142 y -= value; in sub()
156 result.y = (short)(a.y - b); in sub()
169 this.y *= a.y; in mul()
183 result.y = (short)(a.y * b.y); in mul()
196 y *= value; in mul()
210 result.y = (short)(a.y * b); in mul()
223 this.y /= a.y; in div()
237 result.y = (short)(a.y / b.y); in div()
250 y /= value; in div()
264 result.y = (short)(a.y / b); in div()
277 this.y %= a.y; in mod()
291 result.y = (short)(a.y % b.y); in mod()
304 y %= value; in mod()
318 result.y = (short)(a.y % b); in mod()
338 this.y = (short)(-y); in negate()
349 return (short)((x * a.x) + (y * a.y) + (z * a.z)); in dotProduct()
360 return (short)((b.x * a.x) + (b.y * a.y) + (b.z * a.z)); in dotProduct()
371 y += a.y * factor; in addMultiple()
382 this.y = a.y; in set()
395 this.y = b; in setValues()
405 return (short)(x + y + z); in elementSum()
419 return (short)(y); in get()
439 y = value; in setAt()
461 y += value; in addAt()
479 data[offset + 1] = (short)(y); in copyTo()