Lines Matching refs:z
31 public int z; field in Int4
39 this.x = this.y = this.z = this.w = i; in Int4()
42 public Int4(int x, int y, int z, int w) { in Int4() argument
45 this.z = z; in Int4()
53 this.z = source.z; in Int4()
65 this.z += a.z; in add()
80 result.z = a.z + b.z; in add()
94 z += value; in add()
109 result.z = a.z + b; in add()
123 this.z -= a.z; in sub()
138 result.z = a.z - b.z; in sub()
152 z -= value; in sub()
167 result.z = a.z - b; in sub()
181 this.z *= a.z; in mul()
196 result.z = a.z * b.z; in mul()
210 z *= value; in mul()
225 result.z = a.z * b; in mul()
239 this.z /= a.z; in div()
254 result.z = a.z / b.z; in div()
268 z /= value; in div()
283 result.z = a.z / b; in div()
297 this.z %= a.z; in mod()
312 result.z = a.z % b.z; in mod()
326 z %= value; in mod()
341 result.z = a.z % b; in mod()
362 this.z = -z; in negate()
373 return (int)((x * a.x) + (y * a.y) + (z * a.z) + (w * a.w)); in dotProduct()
384 return (int)((b.x * a.x) + (b.y * a.y) + (b.z * a.z) + (b.w * a.w)); in dotProduct()
396 z += a.z * factor; in addMultiple()
408 this.z = a.z; in set()
423 this.z = c; in setValues()
433 return (int)(x + y + z + w); in elementSum()
449 return (int)(z); in get()
472 z = value; in setAt()
497 z += value; in addAt()
516 data[offset + 2] = (int)(z); in copyTo()