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