Searched refs:x87DoubleExtended (Results 1 - 25 of 34) sorted by relevance

12

/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DAPFloat.h134 static const fltSemantics x87DoubleExtended; member in class:llvm::APFloat
/external/llvm/unittests/ADT/
H A DAPFloatTest.cpp520 APFloat M1(APFloat::x87DoubleExtended, 1.0);
521 APFloat M2(APFloat::x87DoubleExtended, 1.0);
522 APFloat A(APFloat::x87DoubleExtended, 3.0);
584 EXPECT_FALSE(APFloat(APFloat::x87DoubleExtended, MinNormalStr).isDenormal());
585 EXPECT_FALSE(APFloat(APFloat::x87DoubleExtended, 0.0).isDenormal());
587 APFloat Val2(APFloat::x87DoubleExtended, 2.0e0);
588 APFloat T(APFloat::x87DoubleExtended, MinNormalStr);
1243 EXPECT_TRUE(APFloat(APFloat::x87DoubleExtended, "2.0").getExactInverse(&inv));
1244 EXPECT_TRUE(inv.bitwiseIsEqual(APFloat(APFloat::x87DoubleExtended, "0.5")));
1414 { &APFloat::x87DoubleExtended, fals
[all...]
/external/llvm/include/llvm/ADT/
H A DAPFloat.h138 static const fltSemantics x87DoubleExtended; member in class:llvm::APFloat
/external/llvm/include/llvm/IR/
H A DType.h170 case X86_FP80TyID: return APFloat::x87DoubleExtended;
/external/llvm/lib/Support/
H A DScaledNumber.cpp186 APFloat Float(APFloat::x87DoubleExtended, APInt(80, RawBits));
H A DAPFloat.cpp65 const fltSemantics APFloat::x87DoubleExtended = { 16383, -16382, 64, 80 }; member in class:llvm::APFloat
666 if (semantics == &APFloat::x87DoubleExtended)
2008 if (&fromSemantics == &APFloat::x87DoubleExtended &&
2009 &toSemantics != &APFloat::x87DoubleExtended && category == fcNaN &&
2073 if (!X86SpecialNan && semantics == &APFloat::x87DoubleExtended)
2896 assert(semantics == (const llvm::fltSemantics*)&x87DoubleExtended);
3122 assert(semantics == (const llvm::fltSemantics*)&x87DoubleExtended &&
3161 initialize(&APFloat::x87DoubleExtended);
3364 if (Sem == &x87DoubleExtended)
3385 return APFloat(x87DoubleExtended, APIn
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DType.h172 case X86_FP80TyID: return APFloat::x87DoubleExtended();
/external/swiftshader/third_party/LLVM/lib/Support/
H A DAPFloat.cpp57 const fltSemantics APFloat::x87DoubleExtended = { 16383, -16382, 64, true }; member in class:llvm::APFloat
674 if (semantics == &APFloat::x87DoubleExtended)
1918 if (oldSemantics == &APFloat::x87DoubleExtended &&
2727 assert(semantics == (const llvm::fltSemantics*)&x87DoubleExtended);
2947 assert(semantics == (const llvm::fltSemantics*)&x87DoubleExtended &&
2986 initialize(&APFloat::x87DoubleExtended);
/external/clang/lib/Basic/
H A DTargetInfo.cpp223 if (&getLongDoubleFormat() == &llvm::APFloat::x87DoubleExtended)
H A DTargets.cpp2617 LongDoubleFormat = &llvm::APFloat::x87DoubleExtended;
4470 LongDoubleFormat = &llvm::APFloat::x87DoubleExtended;
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp691 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
706 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
723 APFloat apf = APFloat(APFloat::x87DoubleExtended, GV.IntVal);
/external/clang/lib/CodeGen/
H A DCodeGenTypes.cpp303 if (&format == &llvm::APFloat::x87DoubleExtended)
H A DTargetInfo.cpp2349 } else if (LDF == &llvm::APFloat::x87DoubleExtended) {
2473 else if (LDF == &llvm::APFloat::x87DoubleExtended)
3628 if (LDF == &llvm::APFloat::x87DoubleExtended)
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DConstants.cpp93 APFloat::getZero(APFloat::x87DoubleExtended));
474 return &APFloat::x87DoubleExtended;
555 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
956 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
H A DAsmWriter.cpp759 if (&CFP->getValueAPF().getSemantics() == &APFloat::x87DoubleExtended) {
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DExecutionEngine.cpp593 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
608 APFloat apf = APFloat::getZero(APFloat::x87DoubleExtended);
/external/clang/lib/AST/
H A DExpr.cpp764 case x87DoubleExtended:
765 return llvm::APFloat::x87DoubleExtended;
781 else if (&Sem == &llvm::APFloat::x87DoubleExtended)
782 FloatingLiteralBits.Semantics = x87DoubleExtended;
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp122 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::x87DoubleExtended)
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp884 APFloatVal = APFloat(APFloat::x87DoubleExtended, APInt(80, Pair));
/external/llvm/lib/IR/
H A DConstants.cpp210 APFloat::getZero(APFloat::x87DoubleExtended));
615 return &APFloat::x87DoubleExtended;
700 else if (&V.getSemantics() == &APFloat::x87DoubleExtended)
1243 &Val2.getSemantics() == &APFloat::x87DoubleExtended;
H A DConstantFold.cpp594 DestTy->isX86_FP80Ty() ? APFloat::x87DoubleExtended :
H A DAsmWriter.cpp1193 if (&CFP->getValueAPF().getSemantics() == &APFloat::x87DoubleExtended) {
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DAPFloat.h144 static const fltSemantics &x87DoubleExtended();
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h1203 case MVT::f80: return APFloat::x87DoubleExtended;
/external/clang/include/clang/AST/
H A DStmt.h148 x87DoubleExtended, enumerator in enum:clang::APFloatSemantics

Completed in 962 milliseconds

12