Searched refs:BO_GE (Results 1 – 15 of 15) sorted by relevance
/external/clang/lib/StaticAnalyzer/Core/ |
D | SimpleSValBuilder.cpp | 175 case BO_LT: return BO_GE; in NegateComparison() 178 case BO_GE: return BO_LT; in NegateComparison() 190 case BO_LE: return BO_GE; in ReverseComparison() 191 case BO_GE: return BO_LE; in ReverseComparison() 284 case BO_GE: in evalBinOpNN() 373 case BO_GE: in evalBinOpNN() 453 case BO_GE: in evalBinOpNN() 565 case BO_GE: in evalBinOpLL() 593 case BO_GE: in evalBinOpLL() 638 case BO_GE: in evalBinOpLL() [all …]
|
D | SimpleConstraintManager.cpp | 129 case BO_LT: return BO_GE; in NegateComparison() 132 case BO_GE: return BO_LT; in NegateComparison() 290 case BO_GE: in assumeSymRel()
|
D | BasicValueFactory.cpp | 216 case BO_GE: in evalAPSInt()
|
D | SymbolManager.cpp | 42 case BO_GE: os << ">=" ; break; in print()
|
/external/clang/include/clang/AST/ |
D | OperationKinds.h | 275 BO_LT, BO_GT, BO_LE, BO_GE, // [C99 6.5.8] Relational operators. enumerator
|
D | StmtVisitor.h | 59 case BO_GE: DISPATCH(BinGE, BinaryOperator); in Visit()
|
D | Expr.h | 2685 static bool isRelationalOp(Opcode Opc) { return Opc >= BO_LT && Opc<=BO_GE; } in isRelationalOp()
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | ArrayBoundCheckerV2.cpp | 143 = svalBuilder.evalBinOpNN(state, BO_GE, rawOffset.getByteOffset(), in checkLocation()
|
D | CStringChecker.cpp | 1251 (svalBuilder.evalBinOpNN(state, BO_GE, *strLengthNL, in evalStrcpyCommon() 1385 SVal sourceInResult = svalBuilder.evalBinOpNN(state, BO_GE, in evalStrcpyCommon() 1397 SVal destInResult = svalBuilder.evalBinOpNN(state, BO_GE, in evalStrcpyCommon()
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 1429 case BO_GE: in VisitBinaryOperator() 1582 case BO_GE: return Success(Result.getInt() >= RHS, E); in VisitBinaryOperator() 2952 case BO_GE: in CheckICE()
|
D | Expr.cpp | 66 case BO_GE: in isKnownToHaveBooleanValue() 1218 case BO_GE: return ">="; in getOpcodeStr() 1273 case OO_GreaterEqual: return BO_GE; in getOverloadedOpcode()
|
D | StmtProfile.cpp | 620 BinaryOp = BO_GE; in DecodeOperatorCall()
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 2584 case BO_GE: in GetExprRange() 2827 } else if (op == BO_GE && IsZero(S, E->getRHS())) { in CheckTrivialUnsignedComparison()
|
D | SemaExpr.cpp | 6084 || Opc == BO_GE)); in CheckCompareOperands() 6137 case BO_GE: resultComparison = ") >= 0"; break; in CheckCompareOperands() 7312 case tok::greaterequal: Opc = BO_GE; break; in ConvertTokenKindToBinaryOpcode() 7452 } else if (Opc == BO_LE || Opc == BO_LT || Opc == BO_GE || Opc == BO_GT || in CreateBuiltinBinOp() 7505 case BO_GE: in CreateBuiltinBinOp()
|
/external/clang/lib/CodeGen/ |
D | CGExprScalar.cpp | 2169 case BO_GE: in EmitCompare() 2739 case BO_GE: in EmitCompoundAssignmentLValue()
|