Home
last modified time | relevance | path

Searched refs:BO_Rem (Results 1 – 18 of 18) sorted by relevance

/external/clang/include/clang/AST/
DOperationKinds.h310 BO_Mul, BO_Div, BO_Rem, // [C99 6.5.5] Multiplicative operators. enumerator
DStmtVisitor.h51 case BO_Rem: DISPATCH(BinRem, BinaryOperator); in Visit()
DExpr.h3038 return Opc >= BO_Mul && Opc <= BO_Rem; in isMultiplicativeOp()
/external/clang/lib/StaticAnalyzer/Checkers/
DDivZeroChecker.cpp52 Op != BO_Rem && in checkPreStmt()
DTestAfterDivZeroChecker.cpp109 if (Op == BO_Div || Op == BO_Rem || Op == BO_DivAssign || in REGISTER_SET_WITH_PROGRAMSTATE()
206 if (Op == BO_Div || Op == BO_Rem || Op == BO_DivAssign || in checkPreStmt()
/external/clang/lib/StaticAnalyzer/Core/
DBasicValueFactory.cpp161 case BO_Rem: in evalAPSInt()
DSimpleConstraintManager.cpp42 case BO_Rem: in canReasonAbout()
DSimpleSValBuilder.cpp235 case BO_Rem: in MakeSymIntVal()
DExprEngineC.cpp111 case BO_RemAssign: Op = BO_Rem; break; in VisitBinaryOperator()
/external/clang/lib/Analysis/
DThreadSafetyCommon.cpp500 case BO_Rem: return translateBinOp(til::BOP_Rem, BO, Ctx); in translateBinaryOperator()
/external/clang/lib/AST/
DStmtProfile.cpp932 BinaryOp = BO_Rem; in DecodeOperatorCall()
DExpr.cpp1824 case BO_Rem: return "%"; in getOpcodeStr()
1865 case OO_Percent: return BO_Rem; in getOverloadedOpcode()
DExprConstant.cpp1746 case BO_Rem: in handleIntIntBinOp()
1751 Result = (Opcode == BO_Rem ? LHS % RHS : LHS / RHS); in handleIntIntBinOp()
9245 case BO_Rem: in CheckICE()
9263 Exp->getOpcode() == BO_Rem) { in CheckICE()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp952 } else if (Opcode == BO_Div || Opcode == BO_Rem) { in EmitBinOpCheck()
3533 case BO_Rem: in EmitCompoundAssignmentLValue()
DCGStmtOpenMP.cpp2253 case BO_Rem: in emitOMPAtomicRMW()
/external/clang/lib/Sema/
DSemaOpenMP.cpp3952 Iter = SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Rem, Iter.get(), in CheckOpenMPLoop()
7376 case BO_Rem: in ActOnOpenMPReductionClause()
DSemaExpr.cpp10112 case tok::percent: Opc = BO_Rem; break; in ConvertTokenKindToBinaryOpcode()
10339 case BO_Rem: in CreateBuiltinBinOp()
DSemaChecking.cpp6385 case BO_Rem: { in GetExprRange()