| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APFloat.h | 246 enum opStatus { enum 326 opStatus remainder(const IEEEFloat &); 328 opStatus mod(const IEEEFloat &); 330 opStatus roundToIntegral(roundingMode); 332 opStatus next(bool nextDown); 582 opStatus modSpecials(const IEEEFloat &); 593 opStatus handleOverflow(roundingMode); 715 opStatus mod(const DoubleAPFloat &RHS); 736 opStatus next(bool nextDown); 1087 opStatus mod(const APFloat &RHS) { in mod() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | Floating.h | 50 APFloat::opStatus convertToInteger(APSInt &Result) const { in convertToInteger() 119 static APFloat::opStatus fromIntegral(APSInt Val, in fromIntegral() 124 APFloat::opStatus Status = F.convertFromAPInt(Val, Val.isSigned(), RM); in fromIntegral() 168 static APFloat::opStatus add(const Floating &A, const Floating &B, in add() 174 static APFloat::opStatus increment(const Floating &A, llvm::RoundingMode RM, in increment() 181 static APFloat::opStatus sub(const Floating &A, const Floating &B, in sub() 187 static APFloat::opStatus decrement(const Floating &A, llvm::RoundingMode RM, in decrement() 194 static APFloat::opStatus mul(const Floating &A, const Floating &B, in mul() 200 static APFloat::opStatus div(const Floating &A, const Floating &B, in div()
|
| H A D | Interp.cpp | 513 APFloat::opStatus Status) { in CheckFloatResult() 549 if ((Status & APFloat::opStatus::opInvalidOp) && in CheckFloatResult()
|
| H A D | Interp.h | 184 APFloat::opStatus Status); 626 llvm::APFloat::opStatus Status; in IncDecFloatHelper() 1634 if ((Status & APFloat::opStatus::opInvalidOp) && F.isFinite()) { in CastFloatingIntegral() 1659 if ((Status & APFloat::opStatus::opInvalidOp) && F.isFinite()) { in CastFloatingIntegralAP() 1679 if ((Status & APFloat::opStatus::opInvalidOp) && F.isFinite()) { in CastFloatingIntegralAPS()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APFloat.cpp | 2010 opStatus fs; in addOrSubtract() 2054 opStatus fs; in multiply() 2074 opStatus fs; in divide() 2093 opStatus fs; in remainder() 2203 opStatus fs; in mod() 2232 opStatus fs; in fusedMultiplyAdd() 2276 opStatus fs; in roundToIntegral() 2444 opStatus fs; in convert() 2702 opStatus fs; in convertToInteger() 3000 opStatus fs; in convertFromDecimalString() [all …]
|
| H A D | APFixedPoint.cpp | 144 APFloat::opStatus Status = F.convertFromAPInt(MaxInt, MaxInt.isSigned(), in fitsInFloatSemantics() 504 APFloat::opStatus S = Flt.convertFromAPInt(Val, Sema.isSigned(), RM); in convertToFloat()
|
| H A D | StringRef.cpp | 603 APFloat::opStatus Status = *StatusOrErr; in getAsDouble()
|
| /freebsd-14.2/sys/dev/qat/qat_api/common/crypto/sym/qat/ |
| H A D | lac_sym_qat.c | 77 Cpa8U opStatus = ICP_QAT_FW_COMN_STATUS_FLAG_OK; in LacSymQat_SymRespHandler() local 84 opStatus = pRespMsgFn->comn_resp.comn_status; in LacSymQat_SymRespHandler() 99 (icp_qat_fw_comn_flags)opStatus); in LacSymQat_SymRespHandler()
|
| /freebsd-14.2/sys/dev/qat/qat_api/common/compression/ |
| H A D | dc_datapath.c | 116 Cpa8U opStatus = ICP_QAT_FW_COMN_STATUS_FLAG_OK; in dcCompression_ProcessCallback() local 150 opStatus = pCompRespMsg->comn_resp.comn_status; in dcCompression_ProcessCallback() 161 if (ICP_QAT_FW_COMN_RESP_UNSUPPORTED_REQUEST_STAT_GET(opStatus)) { in dcCompression_ProcessCallback() 196 ICP_QAT_FW_COMN_RESP_CMP_STAT_GET(opStatus)); in dcCompression_ProcessCallback() 237 ICP_QAT_FW_COMN_RESP_XLAT_STAT_GET(opStatus)); in dcCompression_ProcessCallback() 332 opStatus)); in dcCompression_ProcessCallback()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/ |
| H A D | EmulateInstructionRISCV.h | 97 bool SetAccruedExceptions(llvm::APFloatBase::opStatus);
|
| H A D | EmulateInstructionRISCV.cpp | 1246 auto opStatus = rs1.fusedMultiplyAdd(rs2, rs3, m_emu.GetRoundingMode()); in FusedMultiplyAdd() local 1247 auto res = m_emu.SetAccruedExceptions(opStatus); in FusedMultiplyAdd() 1270 APFloat::opStatus (APFloat::*f)(const APFloat &RHS, in F_Op() 1677 APFloatBase::opStatus opStatus) { in SetAccruedExceptions() argument 1683 switch (opStatus) { in SetAccruedExceptions()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ConstantFolding.cpp | 1864 APFloat::opStatus status = in ConstantFoldSSEConvertToInt() 1903 APFloat::opStatus St) { in mayFoldConstrained() 1909 if (St == APFloat::opStatus::opOK) in mayFoldConstrained() 2070 APFloat::opStatus Status = in ConstantFoldScalarCall1() 2176 APFloat::opStatus St = U.roundToIntegral(*RM); in ConstantFoldScalarCall1() 2418 APFloat::opStatus status = Val.convert( in ConstantFoldScalarCall1() 2516 APFloat::opStatus St = APFloat::opOK; in evaluateCompare() 2570 APFloat::opStatus St; in ConstantFoldScalarCall2() 2651 if (APFloat::opStatus::opOK == V.mod(Op2->getValueAPF())) in ConstantFoldScalarCall2() 2659 if (APFloat::opStatus::opOK == V.remainder(Op2->getValueAPF())) in ConstantFoldScalarCall2() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | LiteralSupport.h | 125 llvm::APFloat::opStatus GetFloatValue(llvm::APFloat &Result);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/ |
| H A D | RISCVBaseInfo.cpp | 265 APFloat::opStatus Status = FPImm.convert( in getLoadFPImm()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Utility/ |
| H A D | Scalar.cpp | 683 if (llvm::Expected<APFloat::opStatus> op = in SetValueFromCString()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | LiteralSupport.cpp | 1488 llvm::APFloat::opStatus
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 2663 APFloat::opStatus St) { in checkFloatingPointResult() 2686 if ((St & APFloat::opStatus::opInvalidOp) && in checkFloatingPointResult() 2707 APFloat::opStatus St; in HandleFloatToFloatCast() 2733 APFloat::opStatus St = Result.convertFromAPInt(Value, Value.isSigned(), RM); in HandleIntToFloatCast() 2892 APFloat::opStatus St; in handleFloatFloatBinOp() 4644 APFloat::opStatus St; in found()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAG.cpp | 6167 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardPositive); in FoldConstantArithmetic() 6173 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardZero); in FoldConstantArithmetic() 6179 APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardNegative); in FoldConstantArithmetic() 6197 APFloat::opStatus s = in FoldConstantArithmetic()
|
| H A D | TargetLowering.cpp | 10740 APFloat::opStatus MinStatus = in expandFP_TO_INT_SAT() 10742 APFloat::opStatus MaxStatus = in expandFP_TO_INT_SAT() 10744 bool AreExactFloatBounds = !(MinStatus & APFloat::opStatus::opInexact) && in expandFP_TO_INT_SAT() 10745 !(MaxStatus & APFloat::opStatus::opInexact); in expandFP_TO_INT_SAT()
|
| H A D | DAGCombiner.cpp | 17044 APFloat::opStatus st = Recip.divide(N1APF, APFloat::rmNearestTiesToEven); in visitFDIV()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/ |
| H A D | AMDGPUAsmParser.cpp | 1931 APFloat::opStatus Status = FPLiteral.convert(*getFltSemantics(VT), in canLosslesslyConvertToFPType()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 15236 llvm::APFloat::opStatus Result = Value.convertToInteger( in DiagnoseFloatingImpCast() 15927 llvm::APFloat::opStatus ConversionStatus = in CheckImplicitConversion()
|
| H A D | SemaOverload.cpp | 419 llvm::APFloat::opStatus ConvertStatus = FloatVal.convert( in getNarrowingKind()
|
| H A D | SemaExpr.cpp | 3872 APFloat::opStatus result = Literal.GetFloatValue(Val); in BuildFloatingLiteral()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 19873 LLVM_ATTRIBUTE_UNUSED APFloat::opStatus Status = APFloat::opOK; in FP_TO_INTHelper() 21152 APFloat::opStatus MinStatus = MinFloat.convertFromAPInt( in LowerFP_TO_INT_SAT() 21154 APFloat::opStatus MaxStatus = MaxFloat.convertFromAPInt( in LowerFP_TO_INT_SAT() 21156 bool AreExactFloatBounds = !(MinStatus & APFloat::opStatus::opInexact) in LowerFP_TO_INT_SAT() 21157 && !(MaxStatus & APFloat::opStatus::opInexact); in LowerFP_TO_INT_SAT()
|