Lines Matching refs:x
29 public short x; field in Short3
38 this.x = this.y = this.z = i; in Short3()
41 public Short3(short x, short y, short z) { in Short3() argument
42 this.x = x; in Short3()
49 this.x = source.x; in Short3()
60 this.x += a.x; in add()
74 result.x = (short)(a.x + b.x); in add()
87 x += value; in add()
101 result.x = (short)(a.x + b); in add()
114 this.x -= a.x; in sub()
128 result.x = (short)(a.x - b.x); in sub()
141 x -= value; in sub()
155 result.x = (short)(a.x - b); in sub()
168 this.x *= a.x; in mul()
182 result.x = (short)(a.x * b.x); in mul()
195 x *= value; in mul()
209 result.x = (short)(a.x * b); in mul()
222 this.x /= a.x; in div()
236 result.x = (short)(a.x / b.x); in div()
249 x /= value; in div()
263 result.x = (short)(a.x / b); in div()
276 this.x %= a.x; in mod()
290 result.x = (short)(a.x % b.x); in mod()
303 x %= value; in mod()
317 result.x = (short)(a.x % b); in mod()
337 this.x = (short)(-x); in negate()
349 return (short)((x * a.x) + (y * a.y) + (z * a.z)); in dotProduct()
360 return (short)((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 (short)(x + y + z); in elementSum()
417 return (short)(x); in get()
436 x = value; in setAt()
458 x += value; in addAt()
478 data[offset] = (short)(x); in copyTo()