Lines Matching refs:Semantics
124 const llvm::fltSemantics &APFloatBase::EnumToSemantics(Semantics S) { in EnumToSemantics()
144 APFloatBase::Semantics
4224 : Semantics(&S), in DoubleAPFloat()
4226 assert(Semantics == &semPPCDoubleDouble);
4230 : Semantics(&S), in DoubleAPFloat()
4233 assert(Semantics == &semPPCDoubleDouble);
4237 : Semantics(&S), Floats(new APFloat[2]{APFloat(semIEEEdouble, I), in DoubleAPFloat()
4239 assert(Semantics == &semPPCDoubleDouble);
4243 : Semantics(&S), in DoubleAPFloat()
4247 assert(Semantics == &semPPCDoubleDouble);
4252 : Semantics(&S), in DoubleAPFloat()
4254 assert(Semantics == &semPPCDoubleDouble);
4260 : Semantics(RHS.Semantics), in DoubleAPFloat()
4264 assert(Semantics == &semPPCDoubleDouble);
4268 : Semantics(RHS.Semantics), Floats(std::move(RHS.Floats)) { in DoubleAPFloat()
4269 RHS.Semantics = &semBogus; in DoubleAPFloat()
4270 assert(Semantics == &semPPCDoubleDouble); in DoubleAPFloat()
4274 if (Semantics == RHS.Semantics && RHS.Floats) { in operator =()
4513 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in divide()
4522 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in remainder()
4531 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in mod()
4542 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in fusedMultiplyAdd()
4552 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in roundToIntegral()
4602 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeLargest()
4610 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallest()
4616 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallestNormalized()
4644 return hash_combine(Arg.Semantics); in hash_value()
4648 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in bitcastToAPInt()
4658 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromString()
4666 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in next()
4677 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToInteger()
4685 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromAPInt()
4696 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromSignExtendedInteger()
4707 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromZeroExtendedInteger()
4718 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToHexString()
4747 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in isInteger()
4755 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in toString()
4761 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in getExactInverse()
4773 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in scalbn()
4780 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in frexp()
4790 APFloat::Storage::Storage(IEEEFloat F, const fltSemantics &Semantics) { in Storage() argument
4791 if (usesLayout<IEEEFloat>(Semantics)) { in Storage()
4795 if (usesLayout<DoubleAPFloat>(Semantics)) { in Storage()
4798 DoubleAPFloat(Semantics, APFloat(std::move(F), S), in Storage()
4818 APFloat::APFloat(const fltSemantics &Semantics, StringRef S) in APFloat() argument
4819 : APFloat(Semantics) { in APFloat()
4850 APFloat APFloat::getAllOnesValue(const fltSemantics &Semantics, in getAllOnesValue() argument
4852 return APFloat(Semantics, APInt::getAllOnesValue(BitWidth)); in getAllOnesValue()