Searched refs:cmpLessThan (Results 1 – 7 of 7) sorted by relevance
/external/llvm/lib/Support/ |
D | APFloat.cpp | 1081 return cmpLessThan; in compareAbsoluteValue() 1333 reverse = compareAbsoluteValue(temp_rhs) == cmpLessThan; in addOrSubtractSignificand() 1800 return cmpLessThan; in compare() 1810 return cmpLessThan; in compare() 1816 return cmpLessThan; in compare() 1830 result = cmpLessThan; in compare() 1838 if (result == cmpLessThan) in compare() 1841 result = cmpLessThan; in compare()
|
/external/llvm/include/llvm/ADT/ |
D | APFloat.h | 143 cmpLessThan, enumerator
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 1670 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan || in ConstantFoldCompareInstruction() 1674 R==APFloat::cmpLessThan); in ConstantFoldCompareInstruction() 1676 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan); in ConstantFoldCompareInstruction() 1685 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan || in ConstantFoldCompareInstruction() 1688 return ConstantInt::get(ResultTy, R!=APFloat::cmpLessThan); in ConstantFoldCompareInstruction()
|
D | Metadata.cpp | 448 if (AVal.compare(BVal) == APFloat::cmpLessThan) in getMostGenericFPMath()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 2770 if (SMax.compare(RHS) == APFloat::cmpLessThan) { // smax < 13123.0 in FoldFCmp_IntToFP_Cst() 2782 if (UMax.compare(RHS) == APFloat::cmpLessThan) { // umax < 13123.0 in FoldFCmp_IntToFP_Cst() 2972 APFloat::cmpLessThan) || Fabs.isZero())) in visitFCmpInst()
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 4869 CR_r == APFloat::cmpLessThan || in VisitBinaryOperator() 4872 CR_i == APFloat::cmpLessThan || in VisitBinaryOperator() 4905 return Success(CR == APFloat::cmpLessThan, E); in VisitBinaryOperator() 4909 return Success(CR == APFloat::cmpLessThan || CR == APFloat::cmpEqual, E); in VisitBinaryOperator() 4917 || CR == APFloat::cmpLessThan in VisitBinaryOperator()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 1614 R==APFloat::cmpLessThan, VT); in FoldSetCC() 1618 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT); in FoldSetCC() 1626 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan || in FoldSetCC() 1639 R==APFloat::cmpLessThan, VT); in FoldSetCC() 1643 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT); in FoldSetCC()
|