/external/llvm/include/llvm/ADT/ |
APFloat.h | 212 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) { 213 APFloat Val(Sem, uninitialized); 221 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) { 222 APFloat Val(Sem, uninitialized); 232 static APFloat getNaN(const fltSemantics &Sem, bool Negative = false, 236 return getQNaN(Sem, Negative, &fill); 238 return getQNaN(Sem, Negative, 0); 243 static APFloat getQNaN(const fltSemantics &Sem, bool Negative = false, 245 return makeNaN(Sem, false, Negative, payload); 249 static APFloat getSNaN(const fltSemantics &Sem, bool Negative = false [all...] |
/external/clang/lib/Frontend/ |
InitPreprocessor.cpp | 103 static T PickFP(const llvm::fltSemantics *Sem, T IEEESingleVal, 106 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEsingle) 108 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEdouble) 110 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::x87DoubleExtended) 112 if (Sem == (const llvm::fltSemantics*)&llvm::APFloat::PPCDoubleDouble) 114 assert(Sem == (const llvm::fltSemantics*)&llvm::APFloat::IEEEquad); 119 const llvm::fltSemantics *Sem, StringRef Ext) { 121 DenormMin = PickFP(Sem, "1.40129846e-45", "4.9406564584124654e-324", 125 int Digits = PickFP(Sem, 6, 15, 18, 31, 33); 126 Epsilon = PickFP(Sem, "1.19209290e-7", "2.2204460492503131e-16" [all...] |
/external/srec/tools/cmd/ |
srecres2utd.pl | 78 } elsif(/^Sem[^:]+: invocab=(\d)/) { # same as CREC 82 } elsif(/^Sem:(\s+)(\S+)/) { # same as CREC 242 } elsif(/^Sem[^:]+: invocab=(\d)/) { # same as CREC 244 } elsif(/^Sem:(\s+)(\S+)/) { # same as CREC
|
/external/clang/test/SemaCXX/ |
crashes.cpp | 158 const fltSemantics &Sem = foobar();
|
/external/llvm/lib/Support/ |
APFloat.cpp | 665 APFloat APFloat::makeNaN(const fltSemantics &Sem, bool SNaN, bool Negative, 667 APFloat value(Sem, uninitialized); [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineAddSub.cpp | 87 void convertToFpType(const fltSemantics &Sem); 92 APFloat createAPFloatFromInt(const fltSemantics &Sem, int Val); 220 void FAddendCoef::convertToFpType(const fltSemantics &Sem) { 226 new(P) APFloat(Sem, IntVal); 228 new(P) APFloat(Sem, 0 - IntVal); 234 APFloat FAddendCoef::createAPFloatFromInt(const fltSemantics &Sem, int Val) { 236 return APFloat(Sem, Val); 238 APFloat T(Sem, 0 - Val); [all...] |
InstCombineCompares.cpp | [all...] |
InstCombineCasts.cpp | [all...] |
/external/llvm/lib/ExecutionEngine/ |
ExecutionEngine.cpp | 776 const fltSemantics &Sem = CE->getOperand(0)->getType()->getFltSemantics(); 777 APFloat apfLHS = APFloat(Sem, LHS.IntVal); 781 apfLHS.add(APFloat(Sem, RHS.IntVal), APFloat::rmNearestTiesToEven); 785 apfLHS.subtract(APFloat(Sem, RHS.IntVal), 790 apfLHS.multiply(APFloat(Sem, RHS.IntVal), 795 apfLHS.divide(APFloat(Sem, RHS.IntVal), 800 apfLHS.mod(APFloat(Sem, RHS.IntVal), [all...] |
/external/llvm/lib/Target/AArch64/Utils/ |
AArch64BaseInfo.cpp | 873 const fltSemantics &Sem = Val.getSemantics(); 874 unsigned FracBits = APFloat::semanticsPrecision(Sem) - 1; [all...] |
/external/clang/lib/AST/ |
Expr.cpp | 707 void FloatingLiteral::setSemantics(const llvm::fltSemantics &Sem) { 708 if (&Sem == &llvm::APFloat::IEEEhalf) 710 else if (&Sem == &llvm::APFloat::IEEEsingle) 712 else if (&Sem == &llvm::APFloat::IEEEdouble) 714 else if (&Sem == &llvm::APFloat::x87DoubleExtended) 716 else if (&Sem == &llvm::APFloat::IEEEquad) 718 else if (&Sem == &llvm::APFloat::PPCDoubleDouble) [all...] |
ExprConstant.cpp | [all...] |
/external/clang/include/clang/Serialization/ |
ASTReader.h | [all...] |
/external/clang/include/clang/AST/ |
Expr.h | [all...] |
/external/llvm/unittests/ADT/ |
APFloatTest.cpp | [all...] |
/external/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | [all...] |
/external/clang/lib/Serialization/ |
ASTReader.cpp | [all...] |