Lines Matching refs:x
24 public int x; field in Int3
33 this.x = this.y = this.z = i; in Int3()
36 public Int3(int x, int y, int z) { in Int3() argument
37 this.x = x; in Int3()
44 this.x = source.x; in Int3()
55 this.x += a.x; in add()
69 result.x = a.x + b.x; in add()
82 x += value; in add()
96 result.x = a.x + b; in add()
109 this.x -= a.x; in sub()
123 result.x = a.x - b.x; in sub()
136 x -= value; in sub()
150 result.x = a.x - b; in sub()
163 this.x *= a.x; in mul()
177 result.x = a.x * b.x; in mul()
190 x *= value; in mul()
204 result.x = a.x * b; in mul()
217 this.x /= a.x; in div()
231 result.x = a.x / b.x; in div()
244 x /= value; in div()
258 result.x = a.x / b; in div()
271 this.x %= a.x; in mod()
285 result.x = a.x % b.x; in mod()
298 x %= value; in mod()
312 result.x = a.x % b; in mod()
332 this.x = -x; in negate()
344 return (int)((x * a.x) + (y * a.y) + (z * a.z)); in dotProduct()
355 return (int)((b.x * a.x) + (b.y * a.y) + (b.z * a.z)); in dotProduct()
365 x += a.x * factor; in addMultiple()
376 this.x = a.x; in set()
389 this.x = a; in setValues()
400 return (int)(x + y + z); in elementSum()
412 return (int)(x); in get()
431 x = value; in setAt()
453 x += value; in addAt()
473 data[offset] = (int)(x); in copyTo()