Lines Matching refs:y
30 public long y; field in Long2
37 this.x = this.y = i; in Long2()
40 public Long2(long x, long y) { in Long2() argument
42 this.y = y; in Long2()
48 this.y = source.y; in Long2()
58 this.y += a.y; in add()
71 result.y = a.y + b.y; in add()
83 y += value; in add()
96 result.y = a.y + b; in add()
108 this.y -= a.y; in sub()
121 result.y = a.y - b.y; in sub()
133 y -= value; in sub()
146 result.y = a.y - b; in sub()
158 this.y *= a.y; in mul()
171 result.y = a.y * b.y; in mul()
183 y *= value; in mul()
196 result.y = a.y * b; in mul()
208 this.y /= a.y; in div()
221 result.y = a.y / b.y; in div()
233 y /= value; in div()
246 result.y = a.y / b; in div()
258 this.y %= a.y; in mod()
271 result.y = a.y % b.y; in mod()
283 y %= value; in mod()
296 result.y = a.y % b; in mod()
315 this.y = -y; in negate()
325 return (long)((x * a.x) + (y * a.y)); in dotProduct()
336 return (long)((b.x * a.x) + (b.y * a.y)); in dotProduct()
347 y += a.y * factor; in addMultiple()
357 this.y = a.y; in set()
368 this.y = b; in setValues()
377 return (long)(x + y); in elementSum()
391 return (long)(y); in get()
409 y = value; in setAt()
428 y += value; in addAt()
443 data[offset + 1] = (long)(y); in copyTo()