Lines Matching refs:y
30 public short y; field in Short4
39 this.x = this.y = this.z = this.w = i; in Short4()
42 public Short4(short x, short y, short z, short w) { in Short4() argument
44 this.y = y; in Short4()
52 this.y = source.y; in Short4()
64 this.y += a.y; in add()
79 result.y = (short)(a.y + b.y); in add()
93 y += value; in add()
108 result.y = (short)(a.y + b); in add()
122 this.y -= a.y; in sub()
137 result.y = (short)(a.y - b.y); in sub()
151 y -= value; in sub()
166 result.y = (short)(a.y - b); in sub()
180 this.y *= a.y; in mul()
195 result.y = (short)(a.y * b.y); in mul()
209 y *= value; in mul()
224 result.y = (short)(a.y * b); in mul()
238 this.y /= a.y; in div()
253 result.y = (short)(a.y / b.y); in div()
267 y /= value; in div()
282 result.y = (short)(a.y / b); in div()
296 this.y %= a.y; in mod()
311 result.y = (short)(a.y % b.y); in mod()
325 y %= value; in mod()
340 result.y = (short)(a.y % b); in mod()
361 this.y = (short)(-y); in negate()
373 return (short)((x * a.x) + (y * a.y) + (z * a.z) + (w * a.w)); in dotProduct()
384 return (short)((b.x * a.x) + (b.y * a.y) + (b.z * a.z) + (b.w * a.w)); in dotProduct()
395 y += a.y * factor; in addMultiple()
407 this.y = a.y; in set()
422 this.y = b; in setValues()
433 return (short)(x + y + z + w); in elementSum()
447 return (short)(y); in get()
469 y = value; in setAt()
494 y += value; in addAt()
515 data[offset + 1] = (short)(y); in copyTo()