Home
last modified time | relevance | path

Searched refs:getQNaN (Results 1 – 12 of 12) sorted by relevance

/external/llvm/include/llvm/ADT/
DAPFloat.h242 return getQNaN(Sem, Negative, &fill);
244 return getQNaN(Sem, Negative, nullptr);
249 static APFloat getQNaN(const fltSemantics &Sem, bool Negative = false,
/external/llvm/lib/Target/WebAssembly/InstPrinter/
DWebAssemblyInstPrinter.cpp115 !FP.bitwiseIsEqual(APFloat::getQNaN(FP.getSemantics())) && in toString()
116 !FP.bitwiseIsEqual(APFloat::getQNaN(FP.getSemantics(), /*Negative=*/true))) { in toString()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/MCTargetDesc/
DWebAssemblyInstPrinter.cpp187 if (FP.isNaN() && !FP.bitwiseIsEqual(APFloat::getQNaN(FP.getSemantics())) && in toString()
189 APFloat::getQNaN(FP.getSemantics(), /*Negative=*/true))) { in toString()
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPFloat.h865 return getQNaN(Sem, Negative, &fill);
867 return getQNaN(Sem, Negative, nullptr);
872 static APFloat getQNaN(const fltSemantics &Sem, bool Negative = false,
/external/llvm/unittests/ADT/
DAPFloatTest.cpp41 EXPECT_FALSE(APFloat::getQNaN(APFloat::IEEEsingle, false).isSignaling()); in TEST()
42 EXPECT_FALSE(APFloat::getQNaN(APFloat::IEEEsingle, true).isSignaling()); in TEST()
43 EXPECT_FALSE(APFloat::getQNaN(APFloat::IEEEsingle, false, &payload).isSignaling()); in TEST()
44 EXPECT_FALSE(APFloat::getQNaN(APFloat::IEEEsingle, true, &payload).isSignaling()); in TEST()
160 test = APFloat::getQNaN(APFloat::IEEEquad, false); in TEST()
161 expected = APFloat::getQNaN(APFloat::IEEEquad, false); in TEST()
166 test = APFloat::getQNaN(APFloat::IEEEquad, false); in TEST()
167 expected = APFloat::getQNaN(APFloat::IEEEquad, false); in TEST()
173 expected = APFloat::getQNaN(APFloat::IEEEquad, false); in TEST()
179 expected = APFloat::getQNaN(APFloat::IEEEquad, false); in TEST()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPFloat.h899 return getQNaN(Sem, Negative, &intPayload);
901 return getQNaN(Sem, Negative, nullptr);
906 static APFloat getQNaN(const fltSemantics &Sem, bool Negative = false,
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstants.h293 static Constant *getQNaN(Type *Ty, bool Negative = false,
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstants.cpp819 Constant *ConstantFP::getQNaN(Type *Ty, bool Negative, APInt *Payload) { in getQNaN() function in ConstantFP
821 APFloat NaN = APFloat::getQNaN(Semantics, Negative, Payload); in getQNaN()
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/include/mlir-hlo/Dialect/mhlo/transforms/
Dmap_mhlo_to_scalar_op.h813 auto nanApfloat = APFloat::getQNaN(floatType.getFloatSemantics());
/external/llvm/lib/Target/AMDGPU/
DSIISelLowering.cpp2674 APFloat CanonicalQNaN = APFloat::getQNaN(C.getSemantics()); in performFCanonicalizeCombine()
/external/clang/lib/AST/
DExprConstant.cpp8257 Result = llvm::APFloat::getQNaN(Sem, false, &fill); in TryEvaluateBuiltinNaN()
8265 Result = llvm::APFloat::getQNaN(Sem, false, &fill); in TryEvaluateBuiltinNaN()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIISelLowering.cpp8907 APFloat CanonicalQNaN = APFloat::getQNaN(C.getSemantics()); in getCanonicalConstantFP()
8939 APFloat QNaN = APFloat::getQNaN(SelectionDAG::EVTToAPFloatSemantics(VT)); in performFCanonicalizeCombine()