• Home
  • Raw
  • Download

Lines Matching refs:UShort8

2182 UShort8::UShort8(unsigned short c)  in UShort8()  function in rr::UShort8
2188 UShort8::UShort8(unsigned short c0, unsigned short c1, unsigned short c2, unsigned short c3, unsign… in UShort8() function in rr::UShort8
2194 UShort8::UShort8(RValue<UShort8> rhs) in UShort8() function in rr::UShort8
2199 UShort8::UShort8(const Reference<UShort8> &rhs) in UShort8() function in rr::UShort8
2204 UShort8::UShort8(RValue<UShort4> lo, RValue<UShort4> hi) in UShort8() function in rr::UShort8
2212 RValue<UShort8> UShort8::operator=(RValue<UShort8> rhs) in operator =()
2217 RValue<UShort8> UShort8::operator=(const UShort8 &rhs) in operator =()
2222 RValue<UShort8> UShort8::operator=(const Reference<UShort8> &rhs) in operator =()
2227 RValue<UShort8> operator&(RValue<UShort8> lhs, RValue<UShort8> rhs) in operator &()
2229 return RValue<UShort8>(Nucleus::createAnd(lhs.value(), rhs.value())); in operator &()
2232 RValue<UShort8> operator+(RValue<UShort8> lhs, RValue<UShort8> rhs) in operator +()
2234 return RValue<UShort8>(Nucleus::createAdd(lhs.value(), rhs.value())); in operator +()
2237 RValue<UShort8> operator*(RValue<UShort8> lhs, RValue<UShort8> rhs) in operator *()
2239 return RValue<UShort8>(Nucleus::createMul(lhs.value(), rhs.value())); in operator *()
2242 RValue<UShort8> operator+=(UShort8 &lhs, RValue<UShort8> rhs) in operator +=()
2247 RValue<UShort8> operator~(RValue<UShort8> val) in operator ~()
2249 return RValue<UShort8>(Nucleus::createNot(val.value())); in operator ~()
2252 RValue<UShort8> Swizzle(RValue<UShort8> x, uint32_t select) in Swizzle()
2265 return RValue<UShort8>(Nucleus::createShuffleVector(x.value(), x.value(), swizzle)); in Swizzle()