Lines Matching refs:x
25 public byte x; field in Byte2
32 x = initX; in Byte2()
38 this.x = source.x; in Byte2()
48 this.x += a.x; in add()
61 result.x = (byte)(a.x + b.x); in add()
73 x += value; in add()
86 result.x = (byte)(a.x + b); in add()
98 this.x -= a.x; in sub()
111 result.x = (byte)(a.x - b.x); in sub()
123 x -= value; in sub()
136 result.x = (byte)(a.x - b); in sub()
148 this.x *= a.x; in mul()
161 result.x = (byte)(a.x * b.x); in mul()
173 x *= value; in mul()
186 result.x = (byte)(a.x * b); in mul()
198 this.x /= a.x; in div()
211 result.x = (byte)(a.x / b.x); in div()
223 x /= value; in div()
236 result.x = (byte)(a.x / b); in div()
255 this.x = (byte)(-x); in negate()
266 return (byte)((x * a.x) + (y * a.y)); in dotProduct()
277 return (byte)((b.x * a.x) + (b.y * a.y)); in dotProduct()
287 x += a.x * factor; in addMultiple()
297 this.x = a.x; in set()
308 this.x = a; in setValues()
318 return (byte)(x + y); in elementSum()
330 return x; in get()
347 x = value; in setAt()
366 x += value; in addAt()
383 data[offset] = x; in copyTo()