Lines Matching refs:z
31 public long z; field in Long4
39 this.x = this.y = this.z = this.w = i; in Long4()
42 public Long4(long x, long y, long z, long w) { in Long4() argument
45 this.z = z; in Long4()
53 this.z = source.z; in Long4()
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 (long)((x * a.x) + (y * a.y) + (z * a.z) + (w * a.w)); in dotProduct()
384 return (long)((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 (long)(x + y + z + w); in elementSum()
449 return (long)(z); in get()
472 z = value; in setAt()
497 z += value; in addAt()
516 data[offset + 2] = (long)(z); in copyTo()