Searched defs:Oper (Results 1 - 7 of 7) sorted by relevance

/external/clang/test/SemaCXX/
H A Ddiagnostic-order.cpp26 struct Oper { struct
27 template<typename T, typename U = typename Error<Oper, T>::error> operator T();
51 int *p = Oper() + 0;
53 // CHECK: no type named 'error' in 'Oper'
54 // CHECK: in instantiation of template class 'Error<Oper, int *>'
55 // CHECK: no type named 'error' in 'Oper'
56 // CHECK: in instantiation of template class 'Error<Oper, float *>'
57 // CHECK: no type named 'error' in 'Oper'
58 // CHECK: in instantiation of template class 'Error<Oper, X *>'
59 // CHECK: no type named 'error' in 'Oper'
[all...]
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp942 Instruction *Oper = getIVIncOperand(IncV, InsertPos, /*allowScale*/true); local
943 if (!Oper)
947 IncV = Oper;
/external/skia/src/core/
H A DSkRegion.cpp413 return !Oper(rgn, *this, kDifference_Op, nullptr);
503 return Oper(*this, rgn, kIntersect_Op, nullptr);
982 bool SkRegion::Oper(const SkRegion& rgnaOrig, const SkRegion& rgnbOrig, Op op, function in class:SkRegion
1093 return SkRegion::Oper(rgna, rgnb, op, this);
/external/skqp/src/core/
H A DSkRegion.cpp413 return !Oper(rgn, *this, kDifference_Op, nullptr);
503 return Oper(*this, rgn, kIntersect_Op, nullptr);
982 bool SkRegion::Oper(const SkRegion& rgnaOrig, const SkRegion& rgnbOrig, Op op, function in class:SkRegion
1093 return SkRegion::Oper(rgna, rgnb, op, this);
/external/swiftshader/third_party/subzero/src/
H A DWasmTranslator.cpp202 const auto *Oper = Op.toOperand(); local
203 Out << "(Operand*)" << Oper; local
204 if (Oper) {
205 Out << "::" << Oper->getType();
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp1880 Value *Oper = Visit(E->getSubExpr()); local
1881 Value *Zero = llvm::Constant::getNullValue(Oper->getType());
1883 if (Oper->getType()->isFPOrFPVectorTy())
1884 Result = Builder.CreateFCmp(llvm::CmpInst::FCMP_OEQ, Oper, Zero, "cmp");
1886 Result = Builder.CreateICmp(llvm::CmpInst::ICMP_EQ, Oper, Zero, "cmp");
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2414 if (Instruction *Oper = dyn_cast<Instruction>(*OI)) {
2415 if (!SE.isSCEVable(Oper->getType()))
2419 dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) {
2430 static Value *getWideOperand(Value *Oper) { argument
2431 if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper))
2433 return Oper;

Completed in 163 milliseconds