Lines Matching refs:z
27 public byte z; field in Byte3
35 z = initZ; in Byte3()
42 this.z = source.z; in Byte3()
53 this.z += a.z; in add()
67 result.z = (byte)(a.z + b.z); in add()
80 z += value; in add()
94 result.z = (byte)(a.z + b); in add()
107 this.z -= a.z; in sub()
121 result.z = (byte)(a.z - b.z); in sub()
134 z -= value; in sub()
148 result.z = (byte)(a.z - b); in sub()
161 this.z *= a.z; in mul()
175 result.z = (byte)(a.z * b.z); in mul()
188 z *= value; in mul()
202 result.z = (byte)(a.z * b); in mul()
215 this.z /= a.z; in div()
229 result.z = (byte)(a.z / b.z); in div()
242 z /= value; in div()
256 result.z = (byte)(a.z / b); in div()
276 this.z = (byte)(-z); in negate()
286 return (byte)((byte)((byte)(x * a.x) + (byte)(y * a.y)) + (byte)(z * a.z)); in dotProduct()
297 return (byte)((byte)((byte)(b.x * a.x) + (byte)(b.y * a.y)) + (byte)(b.z * a.z)); in dotProduct()
309 z += a.z * factor; in addMultiple()
320 this.z = a.z; in set()
333 this.z = c; in setValues()
342 return (byte)(x + y + z); in elementSum()
358 return z; in get()
379 z = value; in setAt()
401 z += value; in addAt()
417 data[offset + 2] = z; in copyTo()