Lines Matching defs:Semantics
194 const llvm::fltSemantics &APFloatBase::EnumToSemantics(Semantics S) {
234 APFloatBase::Semantics
4684 : Semantics(&S),
4686 assert(Semantics == &semPPCDoubleDouble);
4690 : Semantics(&S),
4693 assert(Semantics == &semPPCDoubleDouble);
4697 : Semantics(&S), Floats(new APFloat[2]{APFloat(semIEEEdouble, I),
4699 assert(Semantics == &semPPCDoubleDouble);
4703 : Semantics(&S),
4707 assert(Semantics == &semPPCDoubleDouble);
4712 : Semantics(&S),
4714 assert(Semantics == &semPPCDoubleDouble);
4720 : Semantics(RHS.Semantics),
4724 assert(Semantics == &semPPCDoubleDouble);
4728 : Semantics(RHS.Semantics), Floats(std::move(RHS.Floats)) {
4729 RHS.Semantics = &semBogus;
4730 assert(Semantics == &semPPCDoubleDouble);
4734 if (Semantics == RHS.Semantics && RHS.Floats) {
4973 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
4982 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
4991 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5002 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5012 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5062 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5070 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5076 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5104 return hash_combine(Arg.Semantics);
5108 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5118 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5126 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5137 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5145 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5156 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5167 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5178 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5216 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5224 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5230 assert(Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5252 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5259 assert(Arg.Semantics == &semPPCDoubleDouble && "Unexpected Semantics");
5269 APFloat::Storage::Storage(IEEEFloat F, const fltSemantics &Semantics) {
5270 if (usesLayout<IEEEFloat>(Semantics)) {
5274 if (usesLayout<DoubleAPFloat>(Semantics)) {
5277 DoubleAPFloat(Semantics, APFloat(std::move(F), S),
5297 APFloat::APFloat(const fltSemantics &Semantics, StringRef S)
5298 : APFloat(Semantics) {
5342 APFloat APFloat::getAllOnesValue(const fltSemantics &Semantics) {
5343 return APFloat(Semantics, APInt::getAllOnes(Semantics.sizeInBits));