Searched refs:cmpLessThan (Results 1 – 7 of 7) sorted by relevance
/external/llvm/include/llvm/ADT/ |
D | APFloat.h | 148 cmpLessThan, enumerator 660 return (B.compare(A) == APFloat::cmpLessThan) ? B : A; in minnum() 671 return (A.compare(B) == APFloat::cmpLessThan) ? B : A; in maxnum()
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 1189 return cmpLessThan; in compareAbsoluteValue() 1444 reverse = compareAbsoluteValue(temp_rhs) == cmpLessThan; in addOrSubtractSignificand() 1913 return cmpLessThan; in compare() 1923 return cmpLessThan; in compare() 1929 return cmpLessThan; in compare() 1943 result = cmpLessThan; in compare() 1951 if (result == cmpLessThan) in compare() 1954 result = cmpLessThan; in compare()
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 1761 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan || in ConstantFoldCompareInstruction() 1765 R==APFloat::cmpLessThan); in ConstantFoldCompareInstruction() 1767 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan); in ConstantFoldCompareInstruction() 1776 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan || in ConstantFoldCompareInstruction() 1779 return ConstantInt::get(ResultTy, R!=APFloat::cmpLessThan); in ConstantFoldCompareInstruction()
|
D | Metadata.cpp | 815 if (AVal.compare(BVal) == APFloat::cmpLessThan) in getMostGenericFPMath()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 3809 if (SMax.compare(RHS) == APFloat::cmpLessThan) { // smax < 13123.0 in FoldFCmp_IntToFP_Cst() 3821 if (UMax.compare(RHS) == APFloat::cmpLessThan) { // umax < 13123.0 in FoldFCmp_IntToFP_Cst() 4011 APFloat::cmpLessThan) || Fabs.isZero())) in visitFCmpInst()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 1895 R==APFloat::cmpLessThan, VT); in FoldSetCC() 1899 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT); in FoldSetCC() 1907 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan || in FoldSetCC() 1920 R==APFloat::cmpLessThan, VT); in FoldSetCC() 1924 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT); in FoldSetCC()
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 6887 CR_r == APFloat::cmpLessThan || in VisitBinaryOperator() 6890 CR_i == APFloat::cmpLessThan || in VisitBinaryOperator() 6923 return Success(CR == APFloat::cmpLessThan, E); in VisitBinaryOperator() 6927 return Success(CR == APFloat::cmpLessThan || CR == APFloat::cmpEqual, E); in VisitBinaryOperator() 6935 || CR == APFloat::cmpLessThan in VisitBinaryOperator()
|