Lines Matching refs:w
32 public byte w; field in Byte4
41 w = initW; in Byte4()
48 this.w = source.w; in Byte4()
60 this.w += a.w; in add()
75 result.w = (byte)(a.w + b.w); in add()
89 w += value; in add()
104 result.w = (byte)(a.w + b); in add()
118 this.w -= a.w; in sub()
133 result.w = (byte)(a.w - b.w); in sub()
147 w -= value; in sub()
162 result.w = (byte)(a.w - b); in sub()
176 this.w *= a.w; in mul()
191 result.w = (byte)(a.w * b.w); in mul()
205 w *= value; in mul()
220 result.w = (byte)(a.w * b); in mul()
234 this.w /= a.w; in div()
249 result.w = (byte)(a.w / b.w); in div()
263 w /= value; in div()
278 result.w = (byte)(a.w / b); in div()
299 this.w = (byte)(-w); in negate()
309 return (byte)((x * a.x) + (y * a.y) + (z * a.z) + (w * a.w)); in dotProduct()
320 return (byte)((b.x * a.x) + (b.y * a.y) + (b.z * a.z) + (b.w * a.w)); in dotProduct()
333 w += a.w * factor; in addMultiple()
345 this.w = a.w; in set()
360 this.w = d; in setValues()
369 return (byte)(x + y + z + w); in elementSum()
387 return w; in get()
411 w = value; in setAt()
436 w += value; in addAt()
453 data[offset + 3] = w; in copyTo()