Lines Matching refs:y
25 public long y; field in Long3
33 this.x = this.y = this.z = i; in Long3()
36 public Long3(long x, long y, long z) { in Long3() argument
38 this.y = y; in Long3()
45 this.y = source.y; in Long3()
56 this.y += a.y; in add()
70 result.y = a.y + b.y; in add()
83 y += value; in add()
97 result.y = a.y + b; in add()
110 this.y -= a.y; in sub()
124 result.y = a.y - b.y; in sub()
137 y -= value; in sub()
151 result.y = a.y - b; in sub()
164 this.y *= a.y; in mul()
178 result.y = a.y * b.y; in mul()
191 y *= value; in mul()
205 result.y = a.y * b; in mul()
218 this.y /= a.y; in div()
232 result.y = a.y / b.y; in div()
245 y /= value; in div()
259 result.y = a.y / b; in div()
272 this.y %= a.y; in mod()
286 result.y = a.y % b.y; in mod()
299 y %= value; in mod()
313 result.y = a.y % b; in mod()
333 this.y = -y; in negate()
344 return (long)((x * a.x) + (y * a.y) + (z * a.z)); in dotProduct()
355 return (long)((b.x * a.x) + (b.y * a.y) + (b.z * a.z)); in dotProduct()
366 y += a.y * factor; in addMultiple()
377 this.y = a.y; in set()
390 this.y = b; in setValues()
400 return (long)(x + y + z); in elementSum()
414 return (long)(y); in get()
434 y = value; in setAt()
456 y += value; in addAt()
474 data[offset + 1] = (long)(y); in copyTo()