Lines Matching refs:z
31 public byte z; field in Byte3
39 z = initZ; in Byte3()
46 this.z = source.z; in Byte3()
57 this.z += a.z; in add()
71 result.z = (byte)(a.z + b.z); in add()
84 z += value; in add()
98 result.z = (byte)(a.z + b); in add()
111 this.z -= a.z; in sub()
125 result.z = (byte)(a.z - b.z); in sub()
138 z -= value; in sub()
152 result.z = (byte)(a.z - b); in sub()
165 this.z *= a.z; in mul()
179 result.z = (byte)(a.z * b.z); in mul()
192 z *= value; in mul()
206 result.z = (byte)(a.z * b); in mul()
219 this.z /= a.z; in div()
233 result.z = (byte)(a.z / b.z); in div()
246 z /= value; in div()
260 result.z = (byte)(a.z / b); in div()
280 this.z = (byte)(-z); in negate()
290 return (byte)((byte)((byte)(x * a.x) + (byte)(y * a.y)) + (byte)(z * a.z)); in dotProduct()
301 return (byte)((byte)((byte)(b.x * a.x) + (byte)(b.y * a.y)) + (byte)(b.z * a.z)); in dotProduct()
313 z += a.z * factor; in addMultiple()
324 this.z = a.z; in set()
337 this.z = c; in setValues()
346 return (byte)(x + y + z); in elementSum()
362 return z; in get()
383 z = value; in setAt()
405 z += value; in addAt()
421 data[offset + 2] = z; in copyTo()