Searched refs:OE (Results 1 - 25 of 45) sorted by relevance

12

/freebsd-11-stable/sys/gnu/dts/arm/
H A Dst-pincfg.h14 #define OE (1 << 27) macro
34 #define OUT (OE)
36 #define BIDIR (OE | OD)
38 #define BIDIR_PU (OE | PU | OD)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DObjCARCAPElim.cpp157 for (User::op_iterator OI = Init->op_begin(), OE = Init->op_end();
158 OI != OE; ++OI) {
H A DDependencyAnalysis.cpp101 OE = CS.arg_end(); OI != OE; ++OI) {
119 for (User::const_op_iterator OI = Inst->op_begin(), OE = Inst->op_end();
120 OI != OE; ++OI) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DGVNExpression.h217 const auto &OE = cast<BasicExpression>(Other);
218 return getType() == OE.getType() && NumOperands == OE.NumOperands &&
219 std::equal(op_begin(), op_end(), OE.op_begin());
459 const AggregateValueExpression &OE = cast<AggregateValueExpression>(Other);
460 return NumIntOperands == OE.NumIntOperands &&
461 std::equal(int_op_begin(), int_op_end(), OE.int_op_begin());
521 const PHIExpression &OE = cast<PHIExpression>(Other);
522 return BB == OE.BB;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCTargetDesc.cpp87 for (unsigned OI = 4, OE = MI.getNumOperands(); OI < OE; ++OI) {
105 for (unsigned OI = 4, OE = MI.getNumOperands(); OI < OE; ++OI) {
/freebsd-11-stable/usr.bin/tip/tip/
H A Dremote.c61 &AT, &DV, &CM, &CU, &EL, &IE, &OE, &PN, &PR, &DI,
H A Dvars.c59 "eofw", (char *)&OE },
H A Dtip.h70 EXTERN char *OE; /* EOT to send to complete FT */ variable
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DAliasAnalysisEvaluator.cpp128 for (Instruction::op_iterator OI = Inst.op_begin(), OE = Inst.op_end();
129 OI != OE; ++OI)
H A DObjCARCInstKind.cpp299 for (User::const_op_iterator OI = I->op_begin(), OE = I->op_end();
300 OI != OE; ++OI)
H A DInlineCost.cpp1724 for (User::op_iterator OI = I.op_begin(), OE = I.op_end(); OI != OE; ++OI)
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp2053 } else if (const auto *OE = dyn_cast<CXXOperatorCallExpr>(Exp)) {
2054 auto OEop = OE->getOperator();
2057 const Expr *Target = OE->getArg(0);
2058 const Expr *Source = OE->getArg(1);
2066 if (!(OEop == OO_Star && OE->getNumArgs() > 1)) {
2068 checkPtAccess(OE->getArg(0), AK_Read);
2073 const Expr *Obj = OE->getArg(0);
2078 const FunctionDecl *FD = OE->getDirectCallee();
2079 examineArguments(FD, std::next(OE->arg_begin()), OE
[all...]
H A DThreadSafetyCommon.cpp167 if (const auto *OE = dyn_cast<CXXOperatorCallExpr>(AttrExp)) {
168 if (OE->getOperator() == OO_Exclaim) {
170 AttrExp = OE->getArg(0);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExternalASTMerger.cpp438 for (OriginMap::iterator OI = Origins.begin(), OE = Origins.end(); OI != OE; ) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIMachineFunctionInfo.cpp153 OE = FrameInfo.getObjectIndexEnd(); OI != OE; ++OI)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineBasicBlock.cpp907 OE = MI->operands_end(); OI != OE; ++OI) {
928 OE = MI->operands_end(); OI != OE; ++OI) {
H A DLiveIntervals.cpp1522 OE = MI.operands_end();
1523 OI != OE; ++OI) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVN.cpp277 for (Instruction::op_iterator OI = I->op_begin(), OE = I->op_end();
278 OI != OE; ++OI)
349 for (Instruction::op_iterator OI = EI->op_begin(), OE = EI->op_end();
350 OI != OE; ++OI)
1341 OE = GEP->idx_end();
1342 OI != OE; ++OI)
/freebsd-11-stable/sys/powerpc/powerpc/
H A Ddb_disasm.c676 u_int OE; local
677 OE = extract_field(instr, 31 - 21, 1);
678 if (OE) {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.cpp785 for (unsigned OI = Offset, OE = Opcodes.size(); !Terminated && OI < OE; ) {
796 if (OI + DecodeRing[DI].Length > OE) {
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DFastISelEmitter.cpp699 OE = SimplePatterns.end(); OI != OE; ++OI) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaCast.cpp2542 OverloadExpr *OE = OverloadExpr::find(SrcExpr.get()).Expression; local
2544 << OE->getName() << DestType << OpRange
2545 << OE->getQualifierLoc().getSourceRange();
H A DSemaDeclAttr.cpp1587 *OE = AL.getNumArgs() > 1 ? AL.getArgAsExpr(1) : nullptr; local
1588 S.AddAssumeAlignedAttr(D, AL, E, OE);
1596 Expr *OE) {
1600 AssumeAlignedAttr TmpAttr(Context, CI, E, OE);
1612 if (OE)
1630 if (OE) {
1631 if (!OE->isValueDependent()) {
1633 if (!OE->isIntegerConstantExpr(I, Context)) {
1636 << OE->getSourceRange();
1642 D->addAttr(::new (Context) AssumeAlignedAttr(Context, CI, E, OE));
1595 AddAssumeAlignedAttr(Decl *D, const AttributeCommonInfo &CI, Expr *E, Expr *OE) argument
[all...]
H A DSemaTemplateInstantiateDecl.cpp144 Expr *E, *OE = nullptr; local
154 OE = Result.getAs<Expr>();
157 S.AddAssumeAlignedAttr(New, *Aligned, E, OE);
3362 for (Expr *OE : OldC->varlists()) {
3363 Expr *NE = SemaRef.SubstExpr(OE, TemplateArgs).get();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCommonGEP.cpp384 for (User::op_iterator OI = GepI->idx_begin()+1, OE = GepI->idx_end();
385 OI != OE; ++OI) {

Completed in 287 milliseconds

12