Lines Matching refs:x
29 public long x; field in Long4
39 this.x = this.y = this.z = this.w = i; in Long4()
42 public Long4(long x, long y, long z, long w) { in Long4() argument
43 this.x = x; in Long4()
51 this.x = source.x; in Long4()
63 this.x += a.x; in add()
78 result.x = a.x + b.x; in add()
92 x += value; in add()
107 result.x = a.x + b; in add()
121 this.x -= a.x; in sub()
136 result.x = a.x - b.x; in sub()
150 x -= value; in sub()
165 result.x = a.x - b; in sub()
179 this.x *= a.x; in mul()
194 result.x = a.x * b.x; in mul()
208 x *= value; in mul()
223 result.x = a.x * b; in mul()
237 this.x /= a.x; in div()
252 result.x = a.x / b.x; in div()
266 x /= value; in div()
281 result.x = a.x / b; in div()
295 this.x %= a.x; in mod()
310 result.x = a.x % b.x; in mod()
324 x %= value; in mod()
339 result.x = a.x % b; in mod()
360 this.x = -x; in negate()
373 return (long)((x * a.x) + (y * a.y) + (z * a.z) + (w * a.w)); in dotProduct()
384 return (long)((b.x * a.x) + (b.y * a.y) + (b.z * a.z) + (b.w * a.w)); in dotProduct()
394 x += a.x * factor; in addMultiple()
406 this.x = a.x; in set()
421 this.x = a; in setValues()
433 return (long)(x + y + z + w); in elementSum()
445 return (long)(x); in get()
466 x = value; in setAt()
491 x += value; in addAt()
514 data[offset] = (long)(x); in copyTo()