Lines Matching refs:y
25 public int y; field in Int4
34 this.x = this.y = this.z = this.w = i; in Int4()
37 public Int4(int x, int y, int z, int w) { in Int4() argument
39 this.y = y; in Int4()
47 this.y = source.y; in Int4()
59 this.y += a.y; in add()
74 result.y = a.y + b.y; in add()
88 y += value; in add()
103 result.y = a.y + b; in add()
117 this.y -= a.y; in sub()
132 result.y = a.y - b.y; in sub()
146 y -= value; in sub()
161 result.y = a.y - b; in sub()
175 this.y *= a.y; in mul()
190 result.y = a.y * b.y; in mul()
204 y *= value; in mul()
219 result.y = a.y * b; in mul()
233 this.y /= a.y; in div()
248 result.y = a.y / b.y; in div()
262 y /= value; in div()
277 result.y = a.y / b; in div()
291 this.y %= a.y; in mod()
306 result.y = a.y % b.y; in mod()
320 y %= value; in mod()
335 result.y = a.y % b; in mod()
356 this.y = -y; in negate()
368 return (int)((x * a.x) + (y * a.y) + (z * a.z) + (w * a.w)); in dotProduct()
379 return (int)((b.x * a.x) + (b.y * a.y) + (b.z * a.z) + (b.w * a.w)); in dotProduct()
390 y += a.y * factor; in addMultiple()
402 this.y = a.y; in set()
417 this.y = b; in setValues()
428 return (int)(x + y + z + w); in elementSum()
442 return (int)(y); in get()
464 y = value; in setAt()
489 y += value; in addAt()
510 data[offset + 1] = (int)(y); in copyTo()