Lines Matching refs:x
29 public byte x; field in Byte3
37 x = initX; in Byte3()
44 this.x = source.x; in Byte3()
55 this.x += a.x; in add()
69 result.x = (byte)(a.x + b.x); in add()
82 x += value; in add()
96 result.x = (byte)(a.x + b); in add()
109 this.x -= a.x; in sub()
123 result.x = (byte)(a.x - b.x); in sub()
136 x -= value; in sub()
150 result.x = (byte)(a.x - b); in sub()
163 this.x *= a.x; in mul()
177 result.x = (byte)(a.x * b.x); in mul()
190 x *= value; in mul()
204 result.x = (byte)(a.x * b); in mul()
217 this.x /= a.x; in div()
231 result.x = (byte)(a.x / b.x); in div()
244 x /= value; in div()
258 result.x = (byte)(a.x / b); in div()
278 this.x = (byte)(-x); 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()
311 x += a.x * factor; in addMultiple()
322 this.x = a.x; in set()
335 this.x = a; in setValues()
346 return (byte)(x + y + z); in elementSum()
358 return x; in get()
377 x = value; in setAt()
399 x += value; in addAt()
419 data[offset] = x; in copyTo()