Lines Matching refs:x
29 public byte x; field in Byte2
36 x = initX; in Byte2()
42 this.x = source.x; in Byte2()
52 this.x += a.x; in add()
65 result.x = (byte)(a.x + b.x); in add()
77 x += value; in add()
90 result.x = (byte)(a.x + b); in add()
102 this.x -= a.x; in sub()
115 result.x = (byte)(a.x - b.x); in sub()
127 x -= value; in sub()
140 result.x = (byte)(a.x - b); in sub()
152 this.x *= a.x; in mul()
165 result.x = (byte)(a.x * b.x); in mul()
177 x *= value; in mul()
190 result.x = (byte)(a.x * b); in mul()
202 this.x /= a.x; in div()
215 result.x = (byte)(a.x / b.x); in div()
227 x /= value; in div()
240 result.x = (byte)(a.x / b); in div()
259 this.x = (byte)(-x); in negate()
270 return (byte)((x * a.x) + (y * a.y)); in dotProduct()
281 return (byte)((b.x * a.x) + (b.y * a.y)); in dotProduct()
291 x += a.x * factor; in addMultiple()
301 this.x = a.x; in set()
312 this.x = a; in setValues()
322 return (byte)(x + y); in elementSum()
334 return x; in get()
351 x = value; in setAt()
370 x += value; in addAt()
387 data[offset] = x; in copyTo()