Lines Matching refs:w
32 public int w; 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
46 this.w = w; in Int4()
54 this.w = source.w; in Int4()
66 this.w += a.w; in add()
81 result.w = a.w + b.w; in add()
95 w += value; in add()
110 result.w = a.w + b; in add()
124 this.w -= a.w; in sub()
139 result.w = a.w - b.w; in sub()
153 w -= value; in sub()
168 result.w = a.w - b; in sub()
182 this.w *= a.w; in mul()
197 result.w = a.w * b.w; in mul()
211 w *= value; in mul()
226 result.w = a.w * b; in mul()
240 this.w /= a.w; in div()
255 result.w = a.w / b.w; in div()
269 w /= value; in div()
284 result.w = a.w / b; in div()
298 this.w %= a.w; in mod()
313 result.w = a.w % b.w; in mod()
327 w %= value; in mod()
342 result.w = a.w % b; in mod()
363 this.w = -w; 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()
397 w += a.w * factor; in addMultiple()
409 this.w = a.w; in set()
424 this.w = d; in setValues()
433 return (int)(x + y + z + w); in elementSum()
451 return (int)(w); in get()
475 w = value; in setAt()
500 w += value; in addAt()
517 data[offset + 3] = (int)(w); in copyTo()