Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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 …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DAPFloat.h181 cmpLessThan, enumerator
1155 return compare(RHS) == cmpLessThan;
1164 return Res == cmpLessThan || Res == cmpEqual;
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstantFold.cpp2076 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan || in ConstantFoldCompareInstruction()
2080 R==APFloat::cmpLessThan); in ConstantFoldCompareInstruction()
2082 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan); in ConstantFoldCompareInstruction()
2091 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan || in ConstantFoldCompareInstruction()
2094 return ConstantInt::get(ResultTy, R!=APFloat::cmpLessThan); in ConstantFoldCompareInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2293 R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2298 case ISD::SETOLT: return getBoolConstant(R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2308 case ISD::SETOLE: return getBoolConstant(R==APFloat::cmpLessThan || in FoldSetCC()
2326 R==APFloat::cmpLessThan, dl, VT, in FoldSetCC()
2333 case ISD::SETUGE: return getBoolConstant(R!=APFloat::cmpLessThan, dl, VT, in FoldSetCC()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExprConstant.cpp12601 case APFloat::cmpLessThan: in EvaluateComparisonBinaryOperator()