Lines Matching refs:x
29 public long x; field in Long2
37 this.x = this.y = i; in Long2()
40 public Long2(long x, long y) { in Long2() argument
41 this.x = x; in Long2()
47 this.x = source.x; in Long2()
57 this.x += a.x; in add()
70 result.x = a.x + b.x; in add()
82 x += value; in add()
95 result.x = a.x + b; in add()
107 this.x -= a.x; in sub()
120 result.x = a.x - b.x; in sub()
132 x -= value; in sub()
145 result.x = a.x - b; in sub()
157 this.x *= a.x; in mul()
170 result.x = a.x * b.x; in mul()
182 x *= value; in mul()
195 result.x = a.x * b; in mul()
207 this.x /= a.x; in div()
220 result.x = a.x / b.x; in div()
232 x /= value; in div()
245 result.x = a.x / b; in div()
257 this.x %= a.x; in mod()
270 result.x = a.x % b.x; in mod()
282 x %= value; in mod()
295 result.x = a.x % b; in mod()
314 this.x = -x; 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()
346 x += a.x * factor; in addMultiple()
356 this.x = a.x; in set()
367 this.x = a; in setValues()
377 return (long)(x + y); in elementSum()
389 return (long)(x); in get()
406 x = value; in setAt()
425 x += value; in addAt()
442 data[offset] = (long)(x); in copyTo()