Home
last modified time | relevance | path

Searched refs:IsDiv (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DAMDGPUCodeGenPrepare.cpp141 bool IsDiv, bool IsSigned) const;
509 bool IsDiv, bool IsSigned) const { in expandDivRem24() argument
592 if (!IsDiv) { in expandDivRem24()
624 bool IsDiv = Opc == Instruction::UDiv || Opc == Instruction::SDiv; in expandDivRem32() local
641 if (Value *Res = expandDivRem24(Builder, I, Num, Den, IsDiv, IsSigned)) { in expandDivRem32()
656 Sign = IsDiv ? Builder.CreateXor(LHSign, RHSign) : LHSign; in expandDivRem32()
720 if (IsDiv) { in expandDivRem32()
/external/tensorflow/tensorflow/core/grappler/
Dop_types.h64 bool IsDiv(const NodeDef& node);
Dop_types.cc178 bool IsDiv(const NodeDef& node) { return node.op() == "Div"; } in IsDiv() function
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dconstant_folding.cc2773 if (node->input_size() >= 2 && (IsRealDiv(*node) || IsDiv(*node))) { in ReduceDivToReciprocalMul()
2784 if (IsDiv(*node) && in ReduceDivToReciprocalMul()
Dlayout_optimizer.cc319 IsDiv(node) || IsFloorDiv(node) || IsIgamma(node) || IsIgammac(node) || in IsBinaryOp()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DInstructionSimplify.cpp906 static Value *simplifyDivRem(Value *Op0, Value *Op1, bool IsDiv) { in simplifyDivRem() argument
945 return IsDiv ? ConstantInt::get(Ty, 1) : Constant::getNullValue(Ty); in simplifyDivRem()
955 return IsDiv ? Op0 : Constant::getNullValue(Ty); in simplifyDivRem()
/external/clang/lib/Sema/
DSemaExpr.cpp8035 SourceLocation Loc, bool IsDiv) { in DiagnoseBadDivideOrRemainderValues() argument
8042 << IsDiv << RHS.get()->getSourceRange()); in DiagnoseBadDivideOrRemainderValues()
8047 bool IsCompAssign, bool IsDiv) { in CheckMultiplyDivideOperands() argument
8063 if (IsDiv) in CheckMultiplyDivideOperands()
8064 DiagnoseBadDivideOrRemainderValues(*this, LHS, RHS, Loc, IsDiv); in CheckMultiplyDivideOperands()