Lines Matching refs:x
29 public int x; field in Int3
38 this.x = this.y = this.z = i; in Int3()
41 public Int3(int x, int y, int z) { in Int3() argument
42 this.x = x; in Int3()
49 this.x = source.x; in Int3()
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 (int)((x * a.x) + (y * a.y) + (z * a.z)); in dotProduct()
360 return (int)((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 (int)(x + y + z); in elementSum()
417 return (int)(x); in get()
436 x = value; in setAt()
458 x += value; in addAt()
478 data[offset] = (int)(x); in copyTo()