Lines Matching refs:w
27 public int w; field in Int4
34 this.x = this.y = this.z = this.w = i; in Int4()
37 public Int4(int x, int y, int z, int w) { in Int4() argument
41 this.w = w; in Int4()
49 this.w = source.w; in Int4()
61 this.w += a.w; in add()
76 result.w = a.w + b.w; in add()
90 w += value; in add()
105 result.w = a.w + b; in add()
119 this.w -= a.w; in sub()
134 result.w = a.w - b.w; in sub()
148 w -= value; in sub()
163 result.w = a.w - b; in sub()
177 this.w *= a.w; in mul()
192 result.w = a.w * b.w; in mul()
206 w *= value; in mul()
221 result.w = a.w * b; in mul()
235 this.w /= a.w; in div()
250 result.w = a.w / b.w; in div()
264 w /= value; in div()
279 result.w = a.w / b; in div()
293 this.w %= a.w; in mod()
308 result.w = a.w % b.w; in mod()
322 w %= value; in mod()
337 result.w = a.w % b; in mod()
358 this.w = -w; in negate()
368 return (int)((x * a.x) + (y * a.y) + (z * a.z) + (w * a.w)); in dotProduct()
379 return (int)((b.x * a.x) + (b.y * a.y) + (b.z * a.z) + (b.w * a.w)); in dotProduct()
392 w += a.w * factor; in addMultiple()
404 this.w = a.w; in set()
419 this.w = d; in setValues()
428 return (int)(x + y + z + w); in elementSum()
446 return (int)(w); in get()
470 w = value; in setAt()
495 w += value; in addAt()
512 data[offset + 3] = (int)(w); in copyTo()