Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp1511 return cmpLessThan; in compareAbsoluteValue()
1817 if (compareAbsoluteValue(temp_rhs) == cmpLessThan) { in addOrSubtractSignificand()
2239 compareAbsoluteValue(rhs) != cmpLessThan) { in mod()
2244 if (V.isNaN() || compareAbsoluteValue(V) == cmpLessThan) in mod()
2415 return cmpLessThan; in compare()
2425 return cmpLessThan; in compare()
2431 return cmpLessThan; in compare()
2445 result = cmpLessThan; in compare()
2453 if (result == cmpLessThan) in compare()
2456 result = cmpLessThan; in compare()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DFloating.h107 case llvm::APFloatBase::cmpLessThan: in compare()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h241 cmpLessThan, enumerator
1292 return compare(RHS) == cmpLessThan;
1301 return Res == cmpLessThan || Res == cmpEqual;
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp3809 return R == APFloat::cmpLessThan || R == APFloat::cmpGreaterThan; in compare()
3811 return R == APFloat::cmpUnordered || R == APFloat::cmpLessThan; in compare()
3813 return R == APFloat::cmpLessThan; in compare()
3821 return R == APFloat::cmpLessThan || R == APFloat::cmpEqual; in compare()
3823 return R != APFloat::cmpLessThan; in compare()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp891 if (result == llvm::APFloat::cmpLessThan) in operator <()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp1419 APFloat::cmpLessThan); in F_Compare()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2609 R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2614 case ISD::SETOLT: return getBoolConstant(R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2624 case ISD::SETOLE: return getBoolConstant(R==APFloat::cmpLessThan || in FoldSetCC()
2642 R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2649 case ISD::SETUGE: return getBoolConstant(R!=APFloat::cmpLessThan, dl, VT, in FoldSetCC()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp13638 case APFloat::cmpLessThan: in EvaluateComparisonBinaryOperator()