Home
last modified time | relevance | path

Searched refs:cmpLessThan (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp865 return APFloat::cmpLessThan; in compare()
884 return compare(lhs, rhs) == APFloat::cmpLessThan; in operator <()
889 return Res == APFloat::cmpLessThan || Res == APFloat::cmpEqual; in operator <=()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h295 cmpLessThan, enumerator
391 static constexpr cmpResult cmpLessThan = APFloatBase::cmpLessThan; variable
1405 return compare(RHS) == cmpLessThan;
1414 return Res == cmpLessThan || Res == cmpEqual;
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp1569 return cmpLessThan; in compareAbsoluteValue()
1890 if (cmp_result == cmpLessThan) { in addOrSubtractSignificand()
2328 compareAbsoluteValue(rhs) != cmpLessThan) { in mod()
2333 if (V.isNaN() || compareAbsoluteValue(V) == cmpLessThan) in mod()
2515 return cmpLessThan; in compare()
2525 return cmpLessThan; in compare()
2531 return cmpLessThan; in compare()
2545 result = cmpLessThan; in compare()
2553 if (result == cmpLessThan) in compare()
2556 result = cmpLessThan; in compare()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DFloating.h159 case llvm::APFloatBase::cmpLessThan: in compare()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantFPRange.cpp66 return LHS.isNegative() ? APFloat::cmpLessThan : APFloat::cmpGreaterThan; in strictCompare()
H A DInstructions.cpp3858 return R == APFloat::cmpLessThan || R == APFloat::cmpGreaterThan; in compare()
3860 return R == APFloat::cmpUnordered || R == APFloat::cmpLessThan; in compare()
3862 return R == APFloat::cmpLessThan; in compare()
3870 return R == APFloat::cmpLessThan || R == APFloat::cmpEqual; in compare()
3872 return R != APFloat::cmpLessThan; in compare()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp1420 APFloat::cmpLessThan); in F_Compare()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2852 R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2857 case ISD::SETOLT: return getBoolConstant(R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2867 case ISD::SETOLE: return getBoolConstant(R==APFloat::cmpLessThan || in FoldSetCC()
2885 R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2892 case ISD::SETUGE: return getBoolConstant(R!=APFloat::cmpLessThan, dl, VT, in FoldSetCC()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp13327 return cmp == APFloat::cmpResult::cmpLessThan || in VisitBuiltinCallExpr()
14460 case APFloat::cmpLessThan: in EvaluateComparisonBinaryOperator()