Lines Matching refs:w
32 public short w; field in Short4
39 this.x = this.y = this.z = this.w = i; in Short4()
42 public Short4(short x, short y, short z, short w) { in Short4() argument
46 this.w = w; in Short4()
54 this.w = source.w; in Short4()
66 this.w += a.w; in add()
81 result.w = (short)(a.w + b.w); in add()
95 w += value; in add()
110 result.w = (short)(a.w + b); in add()
124 this.w -= a.w; in sub()
139 result.w = (short)(a.w - b.w); in sub()
153 w -= value; in sub()
168 result.w = (short)(a.w - b); in sub()
182 this.w *= a.w; in mul()
197 result.w = (short)(a.w * b.w); in mul()
211 w *= value; in mul()
226 result.w = (short)(a.w * b); in mul()
240 this.w /= a.w; in div()
255 result.w = (short)(a.w / b.w); in div()
269 w /= value; in div()
284 result.w = (short)(a.w / b); in div()
298 this.w %= a.w; in mod()
313 result.w = (short)(a.w % b.w); in mod()
327 w %= value; in mod()
342 result.w = (short)(a.w % b); in mod()
363 this.w = (short)(-w); in negate()
373 return (short)((x * a.x) + (y * a.y) + (z * a.z) + (w * a.w)); in dotProduct()
384 return (short)((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 (short)(x + y + z + w); in elementSum()
451 return (short)(w); in get()
475 w = value; in setAt()
500 w += value; in addAt()
517 data[offset + 3] = (short)(w); in copyTo()