Lines Matching refs:w
28 public byte w; field in Byte4
37 w = initW; in Byte4()
44 this.w = source.w; in Byte4()
56 this.w += a.w; in add()
71 result.w = (byte)(a.w + b.w); in add()
85 w += value; in add()
100 result.w = (byte)(a.w + b); in add()
114 this.w -= a.w; in sub()
129 result.w = (byte)(a.w - b.w); in sub()
143 w -= value; in sub()
158 result.w = (byte)(a.w - b); in sub()
172 this.w *= a.w; in mul()
187 result.w = (byte)(a.w * b.w); in mul()
201 w *= value; in mul()
216 result.w = (byte)(a.w * b); in mul()
230 this.w /= a.w; in div()
245 result.w = (byte)(a.w / b.w); in div()
259 w /= value; in div()
274 result.w = (byte)(a.w / b); in div()
295 this.w = (byte)(-w); in negate()
305 return (byte)((x * a.x) + (y * a.y) + (z * a.z) + (w * a.w)); in dotProduct()
316 return (byte)((b.x * a.x) + (b.y * a.y) + (b.z * a.z) + (b.w * a.w)); in dotProduct()
329 w += a.w * factor; in addMultiple()
341 this.w = a.w; in set()
356 this.w = d; in setValues()
365 return (byte)(x + y + z + w); in elementSum()
383 return w; in get()
407 w = value; in setAt()
432 w += value; in addAt()
449 data[offset + 3] = w; in copyTo()