Home
last modified time | relevance | path

Searched refs:Oper (Results 1 – 12 of 12) sorted by relevance

/external/clang/test/SemaCXX/
Ddiagnostic-order.cpp26 struct Oper { struct
27 template<typename T, typename U = typename Error<Oper, T>::error> operator T();
51 int *p = Oper() + 0;
/external/tcpdump/tests/
Dforces3vvv.out81 Oper TLV Get(0x7) length 16
99 Oper TLV GetResp(0x9) length 56
129 Oper TLV Get(0x7) length 16
147 Oper TLV GetResp(0x9) length 104
180 Oper TLV Set(0x1) length 72
214 Oper TLV SetResp(0x3) length 24
240 Oper TLV Set(0x1) length 72
274 Oper TLV SetResp(0x3) length 24
300 Oper TLV Set(0x1) length 76
334 Oper TLV SetResp(0x3) length 24
[all …]
Dforces1vvv.out13 Oper TLV GetResp(0x9) length 296
67 Oper TLV Get(0x7) length 16
85 Oper TLV SetProp(0x2) length 28
111 Oper TLV SetProp(0x2) length 28
134 Oper TLV SetProp(0x2) length 28
160 Oper TLV SetProp(0x2) length 28
Dforces1vvvv.out13 Oper TLV GetResp(0x9) length 296
96 Oper TLV Get(0x7) length 16
121 Oper TLV SetProp(0x2) length 28
154 Oper TLV SetProp(0x2) length 28
184 Oper TLV SetProp(0x2) length 28
217 Oper TLV SetProp(0x2) length 28
/external/skia/src/core/
DSkRegion.cpp412 return !Oper(rgn, *this, kDifference_Op, nullptr); in contains()
502 return Oper(*this, rgn, kIntersect_Op, nullptr); in intersects()
981 bool SkRegion::Oper(const SkRegion& rgnaOrig, const SkRegion& rgnbOrig, Op op, in Oper() function in SkRegion
1092 return SkRegion::Oper(rgna, rgnb, op, this); in op()
/external/skia/include/core/
DSkRegion.h453 static bool Oper(const SkRegion&, const SkRegion&, SkRegion::Op, SkRegion*);
/external/swiftshader/third_party/subzero/src/
DWasmTranslator.cpp202 const auto *Oper = Op.toOperand(); in operator <<() local
203 Out << "(Operand*)" << Oper; in operator <<()
204 if (Oper) { in operator <<()
205 Out << "::" << Oper->getType(); in operator <<()
DIceTargetLoweringARM32.cpp4849 InstArithmetic::OpKind Oper; in createArithInst() local
4856 Oper = InstArithmetic::Add; in createArithInst()
4859 Oper = InstArithmetic::And; in createArithInst()
4862 Oper = InstArithmetic::Sub; in createArithInst()
4865 Oper = InstArithmetic::Or; in createArithInst()
4868 Oper = InstArithmetic::Xor; in createArithInst()
4871 return InstArithmetic::create(Func, Oper, Dest, Src0, Src1); in createArithInst()
/external/llvm/lib/Analysis/
DScalarEvolutionExpander.cpp942 Instruction *Oper = getIVIncOperand(IncV, InsertPos, /*allowScale*/true); in hoistIVInc() local
943 if (!Oper) in hoistIVInc()
947 IncV = Oper; in hoistIVInc()
/external/llvm/lib/Transforms/Scalar/
DLoopStrengthReduce.cpp2414 if (Instruction *Oper = dyn_cast<Instruction>(*OI)) { in findIVOperand() local
2415 if (!SE.isSCEVable(Oper->getType())) in findIVOperand()
2419 dyn_cast<SCEVAddRecExpr>(SE.getSCEV(Oper))) { in findIVOperand()
2430 static Value *getWideOperand(Value *Oper) { in getWideOperand() argument
2431 if (TruncInst *Trunc = dyn_cast<TruncInst>(Oper)) in getWideOperand()
2433 return Oper; in getWideOperand()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp1880 Value *Oper = Visit(E->getSubExpr()); in VisitUnaryLNot() local
1881 Value *Zero = llvm::Constant::getNullValue(Oper->getType()); in VisitUnaryLNot()
1883 if (Oper->getType()->isFPOrFPVectorTy()) in VisitUnaryLNot()
1884 Result = Builder.CreateFCmp(llvm::CmpInst::FCMP_OEQ, Oper, Zero, "cmp"); in VisitUnaryLNot()
1886 Result = Builder.CreateICmp(llvm::CmpInst::ICMP_EQ, Oper, Zero, "cmp"); in VisitUnaryLNot()
/external/clang/lib/Sema/
DSemaOverload.cpp6741 for (LookupResult::iterator Oper = Operators.begin(), in AddMemberOperatorCandidates() local
6743 Oper != OperEnd; in AddMemberOperatorCandidates()
6744 ++Oper) in AddMemberOperatorCandidates()
6745 AddMethodCandidate(Oper.getPair(), Args[0]->getType(), in AddMemberOperatorCandidates()
12459 for (LookupResult::iterator Oper = R.begin(), OperEnd = R.end(); in BuildCallToObjectOfClassType() local
12460 Oper != OperEnd; ++Oper) { in BuildCallToObjectOfClassType()
12461 AddMethodCandidate(Oper.getPair(), Object.get()->getType(), in BuildCallToObjectOfClassType()
12738 for (LookupResult::iterator Oper = R.begin(), OperEnd = R.end(); in BuildOverloadedArrowExpr() local
12739 Oper != OperEnd; ++Oper) { in BuildOverloadedArrowExpr()
12740 AddMethodCandidate(Oper.getPair(), Base->getType(), Base->Classify(Context), in BuildOverloadedArrowExpr()