Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp1286 return cmpLessThan; in compareAbsoluteValue()
1546 if (compareAbsoluteValue(temp_rhs) == cmpLessThan) { in addOrSubtractSignificand()
1948 compareAbsoluteValue(rhs) != cmpLessThan) { in mod()
1950 if (compareAbsoluteValue(V) == cmpLessThan) in mod()
2115 return cmpLessThan; in compare()
2125 return cmpLessThan; in compare()
2131 return cmpLessThan; in compare()
2145 result = cmpLessThan; in compare()
2153 if (result == cmpLessThan) in compare()
2156 result = cmpLessThan; in compare()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h181 cmpLessThan, enumerator
1155 return compare(RHS) == cmpLessThan;
1164 return Res == cmpLessThan || Res == cmpEqual;
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DConstantFold.cpp1825 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan || in ConstantFoldCompareInstruction()
1829 R==APFloat::cmpLessThan); in ConstantFoldCompareInstruction()
1831 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan); in ConstantFoldCompareInstruction()
1840 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan || in ConstantFoldCompareInstruction()
1843 return ConstantInt::get(ResultTy, R!=APFloat::cmpLessThan); in ConstantFoldCompareInstruction()
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp850 if (result == llvm::APFloat::cmpLessThan) in operator <()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2300 R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2305 case ISD::SETOLT: return getBoolConstant(R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2315 case ISD::SETOLE: return getBoolConstant(R==APFloat::cmpLessThan || in FoldSetCC()
2333 R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2340 case ISD::SETUGE: return getBoolConstant(R!=APFloat::cmpLessThan, dl, VT, in FoldSetCC()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp12636 case APFloat::cmpLessThan: in EvaluateComparisonBinaryOperator()