Lines Matching refs:z
26 public long z; field in Long4
34 this.x = this.y = this.z = this.w = i; in Long4()
37 public Long4(long x, long y, long z, long w) { in Long4() argument
40 this.z = z; in Long4()
48 this.z = source.z; in Long4()
60 this.z += a.z; in add()
75 result.z = a.z + b.z; in add()
89 z += value; in add()
104 result.z = a.z + b; in add()
118 this.z -= a.z; in sub()
133 result.z = a.z - b.z; in sub()
147 z -= value; in sub()
162 result.z = a.z - b; in sub()
176 this.z *= a.z; in mul()
191 result.z = a.z * b.z; in mul()
205 z *= value; in mul()
220 result.z = a.z * b; in mul()
234 this.z /= a.z; in div()
249 result.z = a.z / b.z; in div()
263 z /= value; in div()
278 result.z = a.z / b; in div()
292 this.z %= a.z; in mod()
307 result.z = a.z % b.z; in mod()
321 z %= value; in mod()
336 result.z = a.z % b; in mod()
357 this.z = -z; in negate()
368 return (long)((x * a.x) + (y * a.y) + (z * a.z) + (w * a.w)); in dotProduct()
379 return (long)((b.x * a.x) + (b.y * a.y) + (b.z * a.z) + (b.w * a.w)); in dotProduct()
391 z += a.z * factor; in addMultiple()
403 this.z = a.z; in set()
418 this.z = c; in setValues()
428 return (long)(x + y + z + w); in elementSum()
444 return (long)(z); in get()
467 z = value; in setAt()
492 z += value; in addAt()
511 data[offset + 2] = (long)(z); in copyTo()