Lines Matching refs:x
24 public long x; field in Long2
32 this.x = this.y = i; in Long2()
35 public Long2(long x, long y) { in Long2() argument
36 this.x = x; in Long2()
42 this.x = source.x; in Long2()
52 this.x += a.x; in add()
65 result.x = a.x + b.x; in add()
77 x += value; in add()
90 result.x = a.x + b; in add()
102 this.x -= a.x; in sub()
115 result.x = a.x - b.x; in sub()
127 x -= value; in sub()
140 result.x = a.x - b; in sub()
152 this.x *= a.x; in mul()
165 result.x = a.x * b.x; in mul()
177 x *= value; in mul()
190 result.x = a.x * b; in mul()
202 this.x /= a.x; in div()
215 result.x = a.x / b.x; in div()
227 x /= value; in div()
240 result.x = a.x / b; in div()
252 this.x %= a.x; in mod()
265 result.x = a.x % b.x; in mod()
277 x %= value; in mod()
290 result.x = a.x % b; in mod()
309 this.x = -x; 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()
341 x += a.x * factor; in addMultiple()
351 this.x = a.x; in set()
362 this.x = a; in setValues()
372 return (long)(x + y); in elementSum()
384 return (long)(x); in get()
401 x = value; in setAt()
420 x += value; in addAt()
437 data[offset] = (long)(x); in copyTo()