Lines Matching refs:x
29 public long x; field in Long3
38 this.x = this.y = this.z = i; in Long3()
41 public Long3(long x, long y, long z) { in Long3() argument
42 this.x = x; in Long3()
49 this.x = source.x; in Long3()
60 this.x += a.x; in add()
74 result.x = a.x + b.x; in add()
87 x += value; in add()
101 result.x = a.x + b; in add()
114 this.x -= a.x; in sub()
128 result.x = a.x - b.x; in sub()
141 x -= value; in sub()
155 result.x = a.x - b; in sub()
168 this.x *= a.x; in mul()
182 result.x = a.x * b.x; in mul()
195 x *= value; in mul()
209 result.x = a.x * b; in mul()
222 this.x /= a.x; in div()
236 result.x = a.x / b.x; in div()
249 x /= value; in div()
263 result.x = a.x / b; in div()
276 this.x %= a.x; in mod()
290 result.x = a.x % b.x; in mod()
303 x %= value; in mod()
317 result.x = a.x % b; in mod()
337 this.x = -x; in negate()
349 return (long)((x * a.x) + (y * a.y) + (z * a.z)); in dotProduct()
360 return (long)((b.x * a.x) + (b.y * a.y) + (b.z * a.z)); in dotProduct()
370 x += a.x * factor; in addMultiple()
381 this.x = a.x; in set()
394 this.x = a; in setValues()
405 return (long)(x + y + z); in elementSum()
417 return (long)(x); in get()
436 x = value; in setAt()
458 x += value; in addAt()
478 data[offset] = (long)(x); in copyTo()