Home
last modified time | relevance | path

Searched refs:APF (Results 1 – 18 of 18) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXMCExpr.cpp26 APFloat APF = getAPFloat(); in printImpl() local
35 APF.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven, &Ignored); in printImpl()
40 APF.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven, &Ignored); in printImpl()
45 APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &Ignored); in printImpl()
49 APInt API = APF.bitcastToAPInt(); in printImpl()
DNVPTXAsmPrinter.cpp1691 APFloat APF = APFloat(Fp->getValueAPF()); // make a copy in printFPConstant() local
1699 APF.convert(APFloat::IEEEsingle(), APFloat::rmNearestTiesToEven, &ignored); in printFPConstant()
1703 APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &ignored); in printFPConstant()
1707 APInt API = APF.bitcastToAPInt(); in printFPConstant()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DUtils.cpp333 APFloat APF(Val); in getAPFloatFromSize() local
334 APF.convert(APFloat::IEEEhalf(), APFloat::rmNearestTiesToEven, &Ignored); in getAPFloatFromSize()
335 return APF; in getAPFloatFromSize()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAsmWriter.cpp1306 const APFloat &APF = CFP->getValueAPF(); in WriteConstantInternal() local
1307 if (&APF.getSemantics() == &APFloat::IEEEsingle() || in WriteConstantInternal()
1308 &APF.getSemantics() == &APFloat::IEEEdouble()) { in WriteConstantInternal()
1315 bool isDouble = &APF.getSemantics() == &APFloat::IEEEdouble(); in WriteConstantInternal()
1316 bool isInf = APF.isInfinity(); in WriteConstantInternal()
1317 bool isNaN = APF.isNaN(); in WriteConstantInternal()
1319 double Val = isDouble ? APF.convertToDouble() : APF.convertToFloat(); in WriteConstantInternal()
1321 APF.toString(StrVal, 6, 0, false); in WriteConstantInternal()
1342 APFloat apf = APF; in WriteConstantInternal()
1355 APInt API = APF.bitcastToAPInt(); in WriteConstantInternal()
[all …]
DCore.cpp1360 APFloat APF = cFP->getValueAPF(); in LLVMConstRealGetDouble() local
1361 APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &APFLosesInfo); in LLVMConstRealGetDouble()
1363 return APF.convertToDouble(); in LLVMConstRealGetDouble()
/third_party/mesa3d/src/broadcom/qpu/
Dqpu_pack.c372 #define APF (1 << 2) in v3d_qpu_flags_pack() macro
381 { APF, 0 }, in v3d_qpu_flags_pack()
388 { MC | APF, (1 << 5) | (1 << 4) }, in v3d_qpu_flags_pack()
399 flags_present |= APF; in v3d_qpu_flags_pack()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DAsmPrinter.cpp886 APFloat APF = APFloat(MI->getOperand(0).getFPImm()->getValueAPF()); in emitDebugValueComment() local
888 OS << (double)APF.convertToFloat(); in emitDebugValueComment()
890 OS << APF.convertToDouble(); in emitDebugValueComment()
895 APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, in emitDebugValueComment()
897 OS << "(long double) " << APF.convertToDouble(); in emitDebugValueComment()
2372 static void emitGlobalConstantFP(APFloat APF, Type *ET, AsmPrinter &AP);
2522 static void emitGlobalConstantFP(APFloat APF, Type *ET, AsmPrinter &AP) { in emitGlobalConstantFP() argument
2524 APInt API = APF.bitcastToAPInt(); in emitGlobalConstantFP()
2530 APF.toString(StrVal); in emitGlobalConstantFP()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DConstantFolding.cpp1566 APFloat APF(V); in GetConstantFoldFPValue() local
1568 APF.convert(Ty->getFltSemantics(), APFloat::rmNearestTiesToEven, &unused); in GetConstantFoldFPValue()
1569 return ConstantFP::get(Ty->getContext(), APF); in GetConstantFoldFPValue()
1656 APFloat APF = Op->getValueAPF(); in getValueAsDouble() local
1657 APF.convert(APFloat::IEEEdouble(), APFloat::rmNearestTiesToEven, &unused); in getValueAsDouble()
1658 return APF.convertToDouble(); in getValueAsDouble()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DIndVarSimplify.cpp288 static bool ConvertToSInt(const APFloat &APF, int64_t &IntVal) { in ConvertToSInt() argument
292 if (APF.convertToInteger(makeMutableArrayRef(UIntVal), 64, true, in ConvertToSInt()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUISelLowering.cpp3620 static bool isInv2Pi(const APFloat &APF) { in isInv2Pi() argument
3625 return APF.bitwiseIsEqual(KF16) || in isInv2Pi()
3626 APF.bitwiseIsEqual(KF32) || in isInv2Pi()
3627 APF.bitwiseIsEqual(KF64); in isInv2Pi()
DSIISelLowering.cpp9896 const APFloat &APF = CRHS->getValueAPF(); in performSetCCCombine() local
9897 if (APF.isInfinity() && !APF.isNegative()) { in performSetCCCombine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp1386 APFloat APF = APFloat(Val); in getConstantFP() local
1387 APF.convert(EVTToAPFloatSemantics(EltVT), APFloat::rmNearestTiesToEven, in getConstantFP()
1389 return getConstantFP(APF, DL, VT, isTarget); in getConstantFP()
9643 const APFloat &APF = CN->getValueAPF(); in getConstantFPSplatPow2ToLog2Int() local
9644 if (APF.convertToInteger(IntVal, APFloat::rmTowardZero, &IsExact) != in getConstantFPSplatPow2ToLog2Int()
DLegalizeDAG.cpp307 APFloat APF = CFP->getValueAPF(); in ExpandConstantFP() local
313 if (!APF.isSignaling()) { in ExpandConstantFP()
316 if (ConstantFPSDNode::isValueValidForType(SVT, APF) && in ExpandConstantFP()
DTargetLowering.cpp6121 APFloat APF(APFSem, APInt::getNullValue(SrcVT.getScalarSizeInBits())); in expandFP_TO_UINT() local
6124 APF.convertFromAPInt(SignMask, false, APFloat::rmNearestTiesToEven)) { in expandFP_TO_UINT()
6134 SDValue Cst = DAG.getConstantFP(APF, dl, SrcVT); in expandFP_TO_UINT()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCISelLowering.cpp7808 APFloat APF = APFloat(APFloat::PPCDoubleDouble(), APInt(128, TwoE31)); in LowerFP_TO_INT() local
7809 SDValue Tmp = DAG.getConstantFP(APF, dl, MVT::ppcf128); in LowerFP_TO_INT()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.cpp20529 APFloat APF = Op0CN->getValueAPF(); in LowerFCOPYSIGN() local
20530 APF.clearSign(); in LowerFCOPYSIGN()
20531 MagBits = DAG.getConstantFP(APF, dl, LogicVT); in LowerFCOPYSIGN()
/third_party/astc-encoder/Test/Images/HDRIHaven/HDR-RGB/
Dhdr-rgb-canarywharf.hdr853 …��߃gZWWan��rs{��{b��WO\N�̝����v�m���d�ī��]ϐkX��anc���s?NC@BQ>DME@LD:ANA;I@:APF;MD8:F:7?>58F8=:B64C…
/third_party/chromium/patch/
D0001-cve.patch52969 zqn7;r>APF<x2A7u$zPYgx+Q-_uI2sdi(2J>`uy}cE%{Hk>QCuUra=a!k0mXC?fq}^