Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPFloat.cpp1379 return cmpLessThan; in compareAbsoluteValue()
1669 if (compareAbsoluteValue(temp_rhs) == cmpLessThan) { in addOrSubtractSignificand()
2074 compareAbsoluteValue(rhs) != cmpLessThan) { in mod()
2079 if (V.isNaN() || compareAbsoluteValue(V) == cmpLessThan) in mod()
2244 return cmpLessThan; in compare()
2254 return cmpLessThan; in compare()
2260 return cmpLessThan; in compare()
2274 result = cmpLessThan; in compare()
2282 if (result == cmpLessThan) in compare()
2285 result = cmpLessThan; in compare()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPFloat.h191 cmpLessThan, enumerator
1167 return compare(RHS) == cmpLessThan;
1176 return Res == cmpLessThan || Res == cmpEqual;
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DScalar.cpp850 if (result == llvm::APFloat::cmpLessThan) in operator <()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DInstructions.cpp4386 return R == APFloat::cmpLessThan || R == APFloat::cmpGreaterThan; in compare()
4388 return R == APFloat::cmpUnordered || R == APFloat::cmpLessThan; in compare()
4390 return R == APFloat::cmpLessThan; in compare()
4398 return R == APFloat::cmpLessThan || R == APFloat::cmpEqual; in compare()
4400 return R != APFloat::cmpLessThan; in compare()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp1404 APFloat::cmpLessThan); in F_Compare()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2452 R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2457 case ISD::SETOLT: return getBoolConstant(R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2467 case ISD::SETOLE: return getBoolConstant(R==APFloat::cmpLessThan || in FoldSetCC()
2485 R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2492 case ISD::SETUGE: return getBoolConstant(R!=APFloat::cmpLessThan, dl, VT, in FoldSetCC()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DExprConstant.cpp12952 case APFloat::cmpLessThan: in EvaluateComparisonBinaryOperator()