Lines Matching refs:Semantics
3848 : Semantics(&S), in DoubleAPFloat()
3850 assert(Semantics == &semPPCDoubleDouble);
3854 : Semantics(&S), in DoubleAPFloat()
3857 assert(Semantics == &semPPCDoubleDouble);
3861 : Semantics(&S), Floats(new APFloat[2]{APFloat(semIEEEdouble, I), in DoubleAPFloat()
3863 assert(Semantics == &semPPCDoubleDouble);
3867 : Semantics(&S), in DoubleAPFloat()
3871 assert(Semantics == &semPPCDoubleDouble);
3876 : Semantics(&S), in DoubleAPFloat()
3878 assert(Semantics == &semPPCDoubleDouble);
3884 : Semantics(RHS.Semantics), in DoubleAPFloat()
3888 assert(Semantics == &semPPCDoubleDouble);
3892 : Semantics(RHS.Semantics), Floats(std::move(RHS.Floats)) { in DoubleAPFloat()
3893 RHS.Semantics = &semBogus; in DoubleAPFloat()
3894 assert(Semantics == &semPPCDoubleDouble); in DoubleAPFloat()
3898 if (Semantics == RHS.Semantics && RHS.Floats) { in operator =()
4137 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in divide()
4146 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in remainder()
4155 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in mod()
4166 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in fusedMultiplyAdd()
4176 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in roundToIntegral()
4226 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeLargest()
4234 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallest()
4240 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in makeSmallestNormalized()
4268 return hash_combine(Arg.Semantics); in hash_value()
4272 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in bitcastToAPInt()
4282 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromString()
4290 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in next()
4301 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToInteger()
4309 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromAPInt()
4320 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromSignExtendedInteger()
4331 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertFromZeroExtendedInteger()
4342 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in convertToHexString()
4371 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in isInteger()
4379 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in toString()
4385 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in getExactInverse()
4396 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in scalbn()
4403 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics"); in frexp()
4413 APFloat::Storage::Storage(IEEEFloat F, const fltSemantics &Semantics) { in Storage() argument
4414 if (usesLayout<IEEEFloat>(Semantics)) { in Storage()
4418 if (usesLayout<DoubleAPFloat>(Semantics)) { in Storage()
4420 DoubleAPFloat(Semantics, APFloat(std::move(F), F.getSemantics()), in Storage()
4439 APFloat::APFloat(const fltSemantics &Semantics, StringRef S) in APFloat() argument
4440 : APFloat(Semantics) { in APFloat()