Lines Matching refs:y
25 public long y; field in Long2
32 this.x = this.y = i; in Long2()
35 public Long2(long x, long y) { in Long2() argument
37 this.y = y; in Long2()
43 this.y = source.y; in Long2()
53 this.y += a.y; in add()
66 result.y = a.y + b.y; in add()
78 y += value; in add()
91 result.y = a.y + b; in add()
103 this.y -= a.y; in sub()
116 result.y = a.y - b.y; in sub()
128 y -= value; in sub()
141 result.y = a.y - b; in sub()
153 this.y *= a.y; in mul()
166 result.y = a.y * b.y; in mul()
178 y *= value; in mul()
191 result.y = a.y * b; in mul()
203 this.y /= a.y; in div()
216 result.y = a.y / b.y; in div()
228 y /= value; in div()
241 result.y = a.y / b; in div()
253 this.y %= a.y; in mod()
266 result.y = a.y % b.y; in mod()
278 y %= value; in mod()
291 result.y = a.y % b; in mod()
310 this.y = -y; in negate()
320 return (long)((x * a.x) + (y * a.y)); in dotProduct()
331 return (long)((b.x * a.x) + (b.y * a.y)); in dotProduct()
342 y += a.y * factor; in addMultiple()
352 this.y = a.y; in set()
363 this.y = b; in setValues()
372 return (long)(x + y); in elementSum()
386 return (long)(y); in get()
404 y = value; in setAt()
423 y += value; in addAt()
438 data[offset + 1] = (long)(y); in copyTo()