Lines Matching refs:UInt
1696 Byte::Byte(RValue<UInt> cast) in Byte()
2444 UShort::UShort(RValue<UInt> cast) in UShort()
4165 Int::Int(RValue<UInt> rhs) in Int()
4182 Int::Int(const UInt &rhs) in Int()
4188 Int::Int(const Reference<UInt> &rhs) in Int()
4206 RValue<Int> Int::operator=(RValue<UInt> rhs) in operator =()
4229 RValue<Int> Int::operator=(const UInt &rhs) in operator =()
4237 RValue<Int> Int::operator=(const Reference<UInt> &rhs) in operator =()
4462 Long::Long(RValue<UInt> cast) in Long()
4532 UInt::UInt(Argument<UInt> argument) in UInt() function in rr::UInt
4537 UInt::UInt(RValue<UShort> cast) in UInt() function in rr::UInt
4539 Value *integer = Nucleus::createZExt(cast.value, UInt::getType()); in UInt()
4544 UInt::UInt(RValue<Long> cast) in UInt() function in rr::UInt
4546 Value *integer = Nucleus::createTrunc(cast.value, UInt::getType()); in UInt()
4551 UInt::UInt(RValue<Float> cast) in UInt() function in rr::UInt
4565 As<Int>(As<UInt>(Int(cast - Float(ustartf))) + UInt(ustart)), in UInt()
4570 UInt::UInt(int x) in UInt() function in rr::UInt
4575 UInt::UInt(unsigned int x) in UInt() function in rr::UInt
4580 UInt::UInt(RValue<UInt> rhs) in UInt() function in rr::UInt
4585 UInt::UInt(RValue<Int> rhs) in UInt() function in rr::UInt
4590 UInt::UInt(const UInt &rhs) in UInt() function in rr::UInt
4596 UInt::UInt(const Reference<UInt> &rhs) in UInt() function in rr::UInt
4602 UInt::UInt(const Int &rhs) in UInt() function in rr::UInt
4608 UInt::UInt(const Reference<Int> &rhs) in UInt() function in rr::UInt
4614 RValue<UInt> UInt::operator=(unsigned int rhs) in operator =()
4616 return RValue<UInt>(storeValue(Nucleus::createConstantInt(rhs))); in operator =()
4619 RValue<UInt> UInt::operator=(RValue<UInt> rhs) in operator =()
4626 RValue<UInt> UInt::operator=(RValue<Int> rhs) in operator =()
4630 return RValue<UInt>(rhs); in operator =()
4633 RValue<UInt> UInt::operator=(const UInt &rhs) in operator =()
4638 return RValue<UInt>(value); in operator =()
4641 RValue<UInt> UInt::operator=(const Reference<UInt> &rhs) in operator =()
4646 return RValue<UInt>(value); in operator =()
4649 RValue<UInt> UInt::operator=(const Int &rhs) in operator =()
4654 return RValue<UInt>(value); in operator =()
4657 RValue<UInt> UInt::operator=(const Reference<Int> &rhs) in operator =()
4662 return RValue<UInt>(value); in operator =()
4665 RValue<UInt> operator+(RValue<UInt> lhs, RValue<UInt> rhs) in operator +()
4667 return RValue<UInt>(Nucleus::createAdd(lhs.value, rhs.value)); in operator +()
4670 RValue<UInt> operator-(RValue<UInt> lhs, RValue<UInt> rhs) in operator -()
4672 return RValue<UInt>(Nucleus::createSub(lhs.value, rhs.value)); in operator -()
4675 RValue<UInt> operator*(RValue<UInt> lhs, RValue<UInt> rhs) in operator *()
4677 return RValue<UInt>(Nucleus::createMul(lhs.value, rhs.value)); in operator *()
4680 RValue<UInt> operator/(RValue<UInt> lhs, RValue<UInt> rhs) in operator /()
4682 return RValue<UInt>(Nucleus::createUDiv(lhs.value, rhs.value)); in operator /()
4685 RValue<UInt> operator%(RValue<UInt> lhs, RValue<UInt> rhs) in operator %()
4687 return RValue<UInt>(Nucleus::createURem(lhs.value, rhs.value)); in operator %()
4690 RValue<UInt> operator&(RValue<UInt> lhs, RValue<UInt> rhs) in operator &()
4692 return RValue<UInt>(Nucleus::createAnd(lhs.value, rhs.value)); in operator &()
4695 RValue<UInt> operator|(RValue<UInt> lhs, RValue<UInt> rhs) in operator |()
4697 return RValue<UInt>(Nucleus::createOr(lhs.value, rhs.value)); in operator |()
4700 RValue<UInt> operator^(RValue<UInt> lhs, RValue<UInt> rhs) in operator ^()
4702 return RValue<UInt>(Nucleus::createXor(lhs.value, rhs.value)); in operator ^()
4705 RValue<UInt> operator<<(RValue<UInt> lhs, RValue<UInt> rhs) in operator <<()
4707 return RValue<UInt>(Nucleus::createShl(lhs.value, rhs.value)); in operator <<()
4710 RValue<UInt> operator>>(RValue<UInt> lhs, RValue<UInt> rhs) in operator >>()
4712 return RValue<UInt>(Nucleus::createLShr(lhs.value, rhs.value)); in operator >>()
4715 RValue<UInt> operator+=(UInt &lhs, RValue<UInt> rhs) in operator +=()
4720 RValue<UInt> operator-=(UInt &lhs, RValue<UInt> rhs) in operator -=()
4725 RValue<UInt> operator*=(UInt &lhs, RValue<UInt> rhs) in operator *=()
4730 RValue<UInt> operator/=(UInt &lhs, RValue<UInt> rhs) in operator /=()
4735 RValue<UInt> operator%=(UInt &lhs, RValue<UInt> rhs) in operator %=()
4740 RValue<UInt> operator&=(UInt &lhs, RValue<UInt> rhs) in operator &=()
4745 RValue<UInt> operator|=(UInt &lhs, RValue<UInt> rhs) in operator |=()
4750 RValue<UInt> operator^=(UInt &lhs, RValue<UInt> rhs) in operator ^=()
4755 RValue<UInt> operator<<=(UInt &lhs, RValue<UInt> rhs) in operator <<=()
4760 RValue<UInt> operator>>=(UInt &lhs, RValue<UInt> rhs) in operator >>=()
4765 RValue<UInt> operator+(RValue<UInt> val) in operator +()
4770 RValue<UInt> operator-(RValue<UInt> val) in operator -()
4772 return RValue<UInt>(Nucleus::createNeg(val.value)); in operator -()
4775 RValue<UInt> operator~(RValue<UInt> val) in operator ~()
4777 return RValue<UInt>(Nucleus::createNot(val.value)); in operator ~()
4780 RValue<UInt> operator++(UInt &val, int) // Post-increment in operator ++()
4782 RValue<UInt> res = val; in operator ++()
4790 const UInt &operator++(UInt &val) // Pre-increment in operator ++()
4798 RValue<UInt> operator--(UInt &val, int) // Post-decrement in operator --()
4800 RValue<UInt> res = val; in operator --()
4808 const UInt &operator--(UInt &val) // Pre-decrement in operator --()
4816 RValue<UInt> Max(RValue<UInt> x, RValue<UInt> y) in Max()
4821 RValue<UInt> Min(RValue<UInt> x, RValue<UInt> y) in Min()
4826 RValue<UInt> Clamp(RValue<UInt> x, RValue<UInt> min, RValue<UInt> max) in Clamp()
4831 RValue<Bool> operator<(RValue<UInt> lhs, RValue<UInt> rhs) in operator <()
4836 RValue<Bool> operator<=(RValue<UInt> lhs, RValue<UInt> rhs) in operator <=()
4841 RValue<Bool> operator>(RValue<UInt> lhs, RValue<UInt> rhs) in operator >()
4846 RValue<Bool> operator>=(RValue<UInt> lhs, RValue<UInt> rhs) in operator >=()
4851 RValue<Bool> operator!=(RValue<UInt> lhs, RValue<UInt> rhs) in operator !=()
4856 RValue<Bool> operator==(RValue<UInt> lhs, RValue<UInt> rhs) in operator ==()
4870 Type *UInt::getType() in getType()
6062 return T(llvm::VectorType::get(T(UInt::getType()), 4)); in getType()
6067 UInt fp32i = As<UInt>(cast); in Half()
6068 UInt abs = fp32i & 0x7FFFFFFF; in Half()
6105 Float::Float(RValue<UInt> cast) in Float()
6107 RValue<Float> result = Float(Int(cast & UInt(0x7FFFFFFF))) + in Float()
6121 UInt fp32i(s << 31); in Float()
6132 fp32i |= As<UInt>(((e + (127 - 15) + 1) << 23) | ((m & ~0x00000400) << 13)); in Float()
6137 fp32i |= As<UInt>(((e + (127 - 15)) << 23) | (m << 13)); in Float()
6890 RValue<Pointer<Byte>> operator+(RValue<Pointer<Byte>> lhs, RValue<UInt> offset) in operator +()
6905 RValue<Pointer<Byte>> operator+=(Pointer<Byte> &lhs, RValue<UInt> offset) in operator +=()
6920 RValue<Pointer<Byte>> operator-(RValue<Pointer<Byte>> lhs, RValue<UInt> offset) in operator -()
6935 RValue<Pointer<Byte>> operator-=(Pointer<Byte> &lhs, RValue<UInt> offset) in operator -=()