Lines Matching refs:x
29 public int x; field in Int4
39 this.x = this.y = this.z = this.w = i; in Int4()
42 public Int4(int x, int y, int z, int w) { in Int4() argument
43 this.x = x; in Int4()
51 this.x = source.x; in Int4()
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 (int)((x * a.x) + (y * a.y) + (z * a.z) + (w * a.w)); in dotProduct()
384 return (int)((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 (int)(x + y + z + w); in elementSum()
445 return (int)(x); in get()
466 x = value; in setAt()
491 x += value; in addAt()
514 data[offset] = (int)(x); in copyTo()