Lines Matching refs:SByte
1946 SByte::SByte(Argument<SByte> argument) in SByte() function in rr::SByte
1951 SByte::SByte(RValue<Int> cast) in SByte() function in rr::SByte
1953 Value *integer = Nucleus::createTrunc(cast.value, SByte::getType()); in SByte()
1958 SByte::SByte(RValue<Short> cast) in SByte() function in rr::SByte
1960 Value *integer = Nucleus::createTrunc(cast.value, SByte::getType()); in SByte()
1965 SByte::SByte(signed char x) in SByte() function in rr::SByte
1970 SByte::SByte(RValue<SByte> rhs) in SByte() function in rr::SByte
1975 SByte::SByte(const SByte &rhs) in SByte() function in rr::SByte
1981 SByte::SByte(const Reference<SByte> &rhs) in SByte() function in rr::SByte
1987 RValue<SByte> SByte::operator=(RValue<SByte> rhs) in operator =()
1994 RValue<SByte> SByte::operator=(const SByte &rhs) in operator =()
1999 return RValue<SByte>(value); in operator =()
2002 RValue<SByte> SByte::operator=(const Reference<SByte> &rhs) in operator =()
2007 return RValue<SByte>(value); in operator =()
2010 RValue<SByte> operator+(RValue<SByte> lhs, RValue<SByte> rhs) in operator +()
2012 return RValue<SByte>(Nucleus::createAdd(lhs.value, rhs.value)); in operator +()
2015 RValue<SByte> operator-(RValue<SByte> lhs, RValue<SByte> rhs) in operator -()
2017 return RValue<SByte>(Nucleus::createSub(lhs.value, rhs.value)); in operator -()
2020 RValue<SByte> operator*(RValue<SByte> lhs, RValue<SByte> rhs) in operator *()
2022 return RValue<SByte>(Nucleus::createMul(lhs.value, rhs.value)); in operator *()
2025 RValue<SByte> operator/(RValue<SByte> lhs, RValue<SByte> rhs) in operator /()
2027 return RValue<SByte>(Nucleus::createSDiv(lhs.value, rhs.value)); in operator /()
2030 RValue<SByte> operator%(RValue<SByte> lhs, RValue<SByte> rhs) in operator %()
2032 return RValue<SByte>(Nucleus::createSRem(lhs.value, rhs.value)); in operator %()
2035 RValue<SByte> operator&(RValue<SByte> lhs, RValue<SByte> rhs) in operator &()
2037 return RValue<SByte>(Nucleus::createAnd(lhs.value, rhs.value)); in operator &()
2040 RValue<SByte> operator|(RValue<SByte> lhs, RValue<SByte> rhs) in operator |()
2042 return RValue<SByte>(Nucleus::createOr(lhs.value, rhs.value)); in operator |()
2045 RValue<SByte> operator^(RValue<SByte> lhs, RValue<SByte> rhs) in operator ^()
2047 return RValue<SByte>(Nucleus::createXor(lhs.value, rhs.value)); in operator ^()
2050 RValue<SByte> operator<<(RValue<SByte> lhs, RValue<SByte> rhs) in operator <<()
2052 return RValue<SByte>(Nucleus::createShl(lhs.value, rhs.value)); in operator <<()
2055 RValue<SByte> operator>>(RValue<SByte> lhs, RValue<SByte> rhs) in operator >>()
2057 return RValue<SByte>(Nucleus::createAShr(lhs.value, rhs.value)); in operator >>()
2060 RValue<SByte> operator+=(SByte &lhs, RValue<SByte> rhs) in operator +=()
2065 RValue<SByte> operator-=(SByte &lhs, RValue<SByte> rhs) in operator -=()
2070 RValue<SByte> operator*=(SByte &lhs, RValue<SByte> rhs) in operator *=()
2075 RValue<SByte> operator/=(SByte &lhs, RValue<SByte> rhs) in operator /=()
2080 RValue<SByte> operator%=(SByte &lhs, RValue<SByte> rhs) in operator %=()
2085 RValue<SByte> operator&=(SByte &lhs, RValue<SByte> rhs) in operator &=()
2090 RValue<SByte> operator|=(SByte &lhs, RValue<SByte> rhs) in operator |=()
2095 RValue<SByte> operator^=(SByte &lhs, RValue<SByte> rhs) in operator ^=()
2100 RValue<SByte> operator<<=(SByte &lhs, RValue<SByte> rhs) in operator <<=()
2105 RValue<SByte> operator>>=(SByte &lhs, RValue<SByte> rhs) in operator >>=()
2110 RValue<SByte> operator+(RValue<SByte> val) in operator +()
2115 RValue<SByte> operator-(RValue<SByte> val) in operator -()
2117 return RValue<SByte>(Nucleus::createNeg(val.value)); in operator -()
2120 RValue<SByte> operator~(RValue<SByte> val) in operator ~()
2122 return RValue<SByte>(Nucleus::createNot(val.value)); in operator ~()
2125 RValue<SByte> operator++(SByte &val, int) // Post-increment in operator ++()
2127 RValue<SByte> res = val; in operator ++()
2135 const SByte &operator++(SByte &val) // Pre-increment in operator ++()
2143 RValue<SByte> operator--(SByte &val, int) // Post-decrement in operator --()
2145 RValue<SByte> res = val; in operator --()
2153 const SByte &operator--(SByte &val) // Pre-decrement in operator --()
2161 RValue<Bool> operator<(RValue<SByte> lhs, RValue<SByte> rhs) in operator <()
2166 RValue<Bool> operator<=(RValue<SByte> lhs, RValue<SByte> rhs) in operator <=()
2171 RValue<Bool> operator>(RValue<SByte> lhs, RValue<SByte> rhs) in operator >()
2176 RValue<Bool> operator>=(RValue<SByte> lhs, RValue<SByte> rhs) in operator >=()
2181 RValue<Bool> operator!=(RValue<SByte> lhs, RValue<SByte> rhs) in operator !=()
2186 RValue<Bool> operator==(RValue<SByte> lhs, RValue<SByte> rhs) in operator ==()
2191 Type *SByte::getType() in getType()
3218 return T(llvm::VectorType::get(T(SByte::getType()), 16)); in getType()
4115 Int::Int(RValue<SByte> cast) in Int()