/external/clang/lib/StaticAnalyzer/Checkers/ |
D | MallocOverflowSecurityChecker.cpp | 62 return (op == BO_Mul) && (Val == 0); in EvaluatesToZero() 85 if (mulop == nullptr && opc == BO_Mul) in CheckMallocArgument() 87 if (opc != BO_Mul && opc != BO_Add && opc != BO_Sub && opc != BO_Shl) in CheckMallocArgument() 97 } else if ((opc == BO_Add || opc == BO_Mul) && in CheckMallocArgument()
|
D | VLASizeChecker.cpp | 165 state, BO_Mul, ArrayLength, EleSizeVal.castAs<NonLoc>(), SizeTy); in checkPreStmt()
|
D | ArrayBoundCheckerV2.cpp | 235 return sb.evalBinOpNN(state, BO_Mul, baseVal, in scaleValue()
|
D | MallocChecker.cpp | 2001 SVal TotalSize = svalBuilder.evalBinOp(State, BO_Mul, count, elementSize, in CallocMem()
|
/external/clang/include/clang/AST/ |
D | OperationKinds.h | 310 BO_Mul, BO_Div, BO_Rem, // [C99 6.5.5] Multiplicative operators. enumerator
|
D | StmtVisitor.h | 49 case BO_Mul: DISPATCH(BinMul, BinaryOperator); in Visit()
|
D | Expr.h | 3038 return Opc >= BO_Mul && Opc <= BO_Rem; in isMultiplicativeOp() 3104 return Opcode(unsigned(Opc) - BO_MulAssign + BO_Mul); in getOpForCompoundAssignment()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | BasicValueFactory.cpp | 153 case BO_Mul: in evalAPSInt()
|
D | SimpleConstraintManager.cpp | 40 case BO_Mul: in canReasonAbout()
|
D | SimpleSValBuilder.cpp | 220 case BO_Mul: in MakeSymIntVal() 405 case BO_Mul: in evalBinOpNN()
|
D | ExprEngineC.cpp | 109 case BO_MulAssign: Op = BO_Mul; break; in VisitBinaryOperator()
|
/external/clang/lib/Sema/ |
D | SemaTemplateVariadic.cpp | 1014 case BO_Mul: in BuildEmptyCXXFoldExpr()
|
D | SemaOpenMP.cpp | 3580 SemaRef.BuildBinOp(S, Loc, BO_Mul, Iter.get(), NewStep.get()); in BuildCounterUpdate() 3753 CurScope, SourceLocation(), BO_Mul, LastIteration32.get(), in CheckOpenMPLoop() 3760 CurScope, SourceLocation(), BO_Mul, LastIteration64.get(), in CheckOpenMPLoop() 3992 Div = SemaRef.BuildBinOp(CurScope, UpdLoc, BO_Mul, Div.get(), in CheckOpenMPLoop() 6985 BOK = BO_Mul; in ActOnOpenMPReductionClause() 7304 case BO_Mul: in ActOnOpenMPReductionClause()
|
D | SemaExpr.cpp | 10110 case tok::star: Opc = BO_Mul; break; in ConvertTokenKindToBinaryOpcode() 10334 case BO_Mul: in CreateBuiltinBinOp()
|
D | SemaChecking.cpp | 6397 case BO_Mul: in GetExprRange()
|
/external/clang/lib/Analysis/ |
D | ThreadSafetyCommon.cpp | 498 case BO_Mul: return translateBinOp(til::BOP_Mul, BO, Ctx); in translateBinaryOperator()
|
D | CFG.cpp | 886 case BO_Mul: in tryEvaluateBool()
|
/external/clang/lib/AST/ |
D | StmtProfile.cpp | 924 BinaryOp = BO_Mul; in DecodeOperatorCall()
|
D | Expr.cpp | 1822 case BO_Mul: return "*"; in getOpcodeStr() 1863 case OO_Star: return BO_Mul; in getOverloadedOpcode()
|
D | ExprConstant.cpp | 1733 case BO_Mul: in handleIntIntBinOp() 1831 case BO_Mul: in handleFloatFloatBinOp() 8405 case BO_Mul: in VisitBinaryOperator() 9243 case BO_Mul: in CheckICE()
|
/external/clang/lib/CodeGen/ |
D | CGExprScalar.cpp | 961 case BO_Mul: CheckName = "mul_overflow"; break; in EmitBinOpCheck() 2339 case BO_Mul: in EmitOverflowCheckedBinOp() 3531 case BO_Mul: in EmitCompoundAssignmentLValue()
|
D | CGStmtOpenMP.cpp | 2251 case BO_Mul: in emitOMPAtomicRMW()
|