Lines Matching refs:z
27 public byte z; field in Byte4
36 z = initZ; in Byte4()
43 this.z = source.z; in Byte4()
55 this.z += a.z; in add()
70 result.z = (byte)(a.z + b.z); in add()
84 z += value; in add()
99 result.z = (byte)(a.z + b); in add()
113 this.z -= a.z; in sub()
128 result.z = (byte)(a.z - b.z); in sub()
142 z -= value; in sub()
157 result.z = (byte)(a.z - b); in sub()
171 this.z *= a.z; in mul()
186 result.z = (byte)(a.z * b.z); in mul()
200 z *= value; in mul()
215 result.z = (byte)(a.z * b); in mul()
229 this.z /= a.z; in div()
244 result.z = (byte)(a.z / b.z); in div()
258 z /= value; in div()
273 result.z = (byte)(a.z / b); in div()
294 this.z = (byte)(-z); 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()
328 z += a.z * factor; in addMultiple()
340 this.z = a.z; in set()
355 this.z = c; in setValues()
365 return (byte)(x + y + z + w); in elementSum()
381 return z; in get()
404 z = value; in setAt()
429 z += value; in addAt()
448 data[offset + 2] = z; in copyTo()