Lines Matching refs:x
29 public byte x; field in Byte4
38 x = initX; in Byte4()
45 this.x = source.x; in Byte4()
57 this.x += a.x; in add()
72 result.x = (byte)(a.x + b.x); in add()
86 x += value; in add()
101 result.x = (byte)(a.x + b); in add()
115 this.x -= a.x; in sub()
130 result.x = (byte)(a.x - b.x); in sub()
144 x -= value; in sub()
159 result.x = (byte)(a.x - b); in sub()
173 this.x *= a.x; in mul()
188 result.x = (byte)(a.x * b.x); in mul()
202 x *= value; in mul()
217 result.x = (byte)(a.x * b); in mul()
231 this.x /= a.x; in div()
246 result.x = (byte)(a.x / b.x); in div()
260 x /= value; in div()
275 result.x = (byte)(a.x / b); in div()
296 this.x = (byte)(-x); 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()
330 x += a.x * factor; in addMultiple()
342 this.x = a.x; in set()
357 this.x = a; in setValues()
369 return (byte)(x + y + z + w); in elementSum()
381 return x; in get()
402 x = value; in setAt()
427 x += value; in addAt()
450 data[offset] = x; in copyTo()