Searched refs:BOE (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp91 bool VisitBinaryOperator(BinaryOperator *BOE) { argument
92 if (isZeroingPropIvar(BOE) && isRemovable(BOE)) {
94 Pass.TA.removeStmt(BOE);
161 bool isZeroingPropIvar(BinaryOperator *BOE) { argument
162 if (BOE->getOpcode() == BO_Comma)
163 return isZeroingPropIvar(BOE->getLHS()) &&
164 isZeroingPropIvar(BOE->getRHS());
166 if (BOE->getOpcode() != BO_Assign)
169 Expr *LHS = BOE
[all...]
/external/qemu/disas/
H A Dppc.c521 #define BOE BO + 1
524 #define BH BOE + 1
2884 { "bc-", B(16,0,0), B_MASK, PPCCOM, { BOE, BI, BDM } },
2885 { "bc+", B(16,0,0), B_MASK, PPCCOM, { BOE, BI, BDP } },
2887 { "bcl-", B(16,0,1), B_MASK, PPCCOM, { BOE, BI, BDM } },
2888 { "bcl+", B(16,0,1), B_MASK, PPCCOM, { BOE, BI, BDP } },
2890 { "bca-", B(16,1,0), B_MASK, PPCCOM, { BOE, BI, BDMA } },
2891 { "bca+", B(16,1,0), B_MASK, PPCCOM, { BOE, BI, BDPA } },
2893 { "bcla-", B(16,1,1), B_MASK, PPCCOM, { BOE, BI, BDMA } },
2894 { "bcla+", B(16,1,1), B_MASK, PPCCOM, { BOE, B
517 #define BOE macro
[all...]
/external/clang/lib/Analysis/
H A DThreadSafety.cpp381 } else if (const BinaryOperator *BOE = dyn_cast<BinaryOperator>(Exp)) {
383 unsigned Sz = buildSExpr(BOE->getLHS(), CallCtx);
384 Sz += buildSExpr(BOE->getRHS(), CallCtx);

Completed in 144 milliseconds