Searched defs:Oper (Results 1 - 7 of 7) sorted by relevance
/external/clang/test/SemaCXX/ |
H A D | diagnostic-order.cpp | 26 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 D | ScalarEvolutionExpander.cpp | 942 Instruction *Oper = getIVIncOperand(IncV, InsertPos, /*allowScale*/true); local 943 if (!Oper) 947 IncV = Oper;
|
/external/skia/src/core/ |
H A D | SkRegion.cpp | 413 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 D | SkRegion.cpp | 413 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 D | WasmTranslator.cpp | 202 const auto *Oper = Op.toOperand(); local 203 Out << "(Operand*)" << Oper; local 204 if (Oper) { 205 Out << "::" << Oper->getType();
|
/external/clang/lib/CodeGen/ |
H A D | CGExprScalar.cpp | 1880 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 D | LoopStrengthReduce.cpp | 2414 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