• Home
  • Raw
  • Download

Lines Matching refs:SByte

1294 	SByte::SByte(Argument<SByte> argument)  in SByte()  function in sw::SByte
1299 SByte::SByte(RValue<Int> cast) in SByte() function in sw::SByte
1301 Value *integer = Nucleus::createTrunc(cast.value, SByte::getType()); in SByte()
1306 SByte::SByte(RValue<Short> cast) in SByte() function in sw::SByte
1308 Value *integer = Nucleus::createTrunc(cast.value, SByte::getType()); in SByte()
1313 SByte::SByte(signed char x) in SByte() function in sw::SByte
1318 SByte::SByte(RValue<SByte> rhs) in SByte() function in sw::SByte
1323 SByte::SByte(const SByte &rhs) in SByte() function in sw::SByte
1329 SByte::SByte(const Reference<SByte> &rhs) in SByte() function in sw::SByte
1335 RValue<SByte> SByte::operator=(RValue<SByte> rhs) in operator =()
1342 RValue<SByte> SByte::operator=(const SByte &rhs) in operator =()
1347 return RValue<SByte>(value); in operator =()
1350 RValue<SByte> SByte::operator=(const Reference<SByte> &rhs) in operator =()
1355 return RValue<SByte>(value); in operator =()
1358 RValue<SByte> operator+(RValue<SByte> lhs, RValue<SByte> rhs) in operator +()
1360 return RValue<SByte>(Nucleus::createAdd(lhs.value, rhs.value)); in operator +()
1363 RValue<SByte> operator-(RValue<SByte> lhs, RValue<SByte> rhs) in operator -()
1365 return RValue<SByte>(Nucleus::createSub(lhs.value, rhs.value)); in operator -()
1368 RValue<SByte> operator*(RValue<SByte> lhs, RValue<SByte> rhs) in operator *()
1370 return RValue<SByte>(Nucleus::createMul(lhs.value, rhs.value)); in operator *()
1373 RValue<SByte> operator/(RValue<SByte> lhs, RValue<SByte> rhs) in operator /()
1375 return RValue<SByte>(Nucleus::createSDiv(lhs.value, rhs.value)); in operator /()
1378 RValue<SByte> operator%(RValue<SByte> lhs, RValue<SByte> rhs) in operator %()
1380 return RValue<SByte>(Nucleus::createSRem(lhs.value, rhs.value)); in operator %()
1383 RValue<SByte> operator&(RValue<SByte> lhs, RValue<SByte> rhs) in operator &()
1385 return RValue<SByte>(Nucleus::createAnd(lhs.value, rhs.value)); in operator &()
1388 RValue<SByte> operator|(RValue<SByte> lhs, RValue<SByte> rhs) in operator |()
1390 return RValue<SByte>(Nucleus::createOr(lhs.value, rhs.value)); in operator |()
1393 RValue<SByte> operator^(RValue<SByte> lhs, RValue<SByte> rhs) in operator ^()
1395 return RValue<SByte>(Nucleus::createXor(lhs.value, rhs.value)); in operator ^()
1398 RValue<SByte> operator<<(RValue<SByte> lhs, RValue<SByte> rhs) in operator <<()
1400 return RValue<SByte>(Nucleus::createShl(lhs.value, rhs.value)); in operator <<()
1403 RValue<SByte> operator>>(RValue<SByte> lhs, RValue<SByte> rhs) in operator >>()
1405 return RValue<SByte>(Nucleus::createAShr(lhs.value, rhs.value)); in operator >>()
1408 RValue<SByte> operator+=(SByte &lhs, RValue<SByte> rhs) in operator +=()
1413 RValue<SByte> operator-=(SByte &lhs, RValue<SByte> rhs) in operator -=()
1418 RValue<SByte> operator*=(SByte &lhs, RValue<SByte> rhs) in operator *=()
1423 RValue<SByte> operator/=(SByte &lhs, RValue<SByte> rhs) in operator /=()
1428 RValue<SByte> operator%=(SByte &lhs, RValue<SByte> rhs) in operator %=()
1433 RValue<SByte> operator&=(SByte &lhs, RValue<SByte> rhs) in operator &=()
1438 RValue<SByte> operator|=(SByte &lhs, RValue<SByte> rhs) in operator |=()
1443 RValue<SByte> operator^=(SByte &lhs, RValue<SByte> rhs) in operator ^=()
1448 RValue<SByte> operator<<=(SByte &lhs, RValue<SByte> rhs) in operator <<=()
1453 RValue<SByte> operator>>=(SByte &lhs, RValue<SByte> rhs) in operator >>=()
1458 RValue<SByte> operator+(RValue<SByte> val) in operator +()
1463 RValue<SByte> operator-(RValue<SByte> val) in operator -()
1465 return RValue<SByte>(Nucleus::createNeg(val.value)); in operator -()
1468 RValue<SByte> operator~(RValue<SByte> val) in operator ~()
1470 return RValue<SByte>(Nucleus::createNot(val.value)); in operator ~()
1473 RValue<SByte> operator++(SByte &val, int) // Post-increment in operator ++()
1475 RValue<SByte> res = val; in operator ++()
1483 const SByte &operator++(SByte &val) // Pre-increment in operator ++()
1491 RValue<SByte> operator--(SByte &val, int) // Post-decrement in operator --()
1493 RValue<SByte> res = val; in operator --()
1501 const SByte &operator--(SByte &val) // Pre-decrement in operator --()
1509 RValue<Bool> operator<(RValue<SByte> lhs, RValue<SByte> rhs) in operator <()
1514 RValue<Bool> operator<=(RValue<SByte> lhs, RValue<SByte> rhs) in operator <=()
1519 RValue<Bool> operator>(RValue<SByte> lhs, RValue<SByte> rhs) in operator >()
1524 RValue<Bool> operator>=(RValue<SByte> lhs, RValue<SByte> rhs) in operator >=()
1529 RValue<Bool> operator!=(RValue<SByte> lhs, RValue<SByte> rhs) in operator !=()
1534 RValue<Bool> operator==(RValue<SByte> lhs, RValue<SByte> rhs) in operator ==()
1539 Type *SByte::getType() in getType()
2526 return T(llvm::VectorType::get(T(SByte::getType()), 16)); in getType()
3320 Int::Int(RValue<SByte> cast) in Int()