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

/freebsd-10.1-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransZeroOutPropsInDealloc.cpp91 bool VisitBinaryOperator(BinaryOperator *BOE) { argument
92 if (isZeroingPropIvar(BOE) && isRemovable(BOE)) {
94 Pass.TA.removeStmt(BOE);
163 bool isZeroingPropIvar(BinaryOperator *BOE) { argument
164 if (BOE->getOpcode() == BO_Comma)
165 return isZeroingPropIvar(BOE->getLHS()) &&
166 isZeroingPropIvar(BOE->getRHS());
168 if (BOE->getOpcode() != BO_Assign)
171 Expr *LHS = BOE
[all...]
/freebsd-10.1-release/contrib/binutils/opcodes/
H A Dppc-opc.c180 #define BOE BO + 1
183 #define BH BOE + 1
2542 { "bc-", B(16,0,0), B_MASK, PPCCOM, { BOE, BI, BDM } },
2543 { "bc+", B(16,0,0), B_MASK, PPCCOM, { BOE, BI, BDP } },
2545 { "bcl-", B(16,0,1), B_MASK, PPCCOM, { BOE, BI, BDM } },
2546 { "bcl+", B(16,0,1), B_MASK, PPCCOM, { BOE, BI, BDP } },
2548 { "bca-", B(16,1,0), B_MASK, PPCCOM, { BOE, BI, BDMA } },
2549 { "bca+", B(16,1,0), B_MASK, PPCCOM, { BOE, BI, BDPA } },
2551 { "bcla-", B(16,1,1), B_MASK, PPCCOM, { BOE, BI, BDMA } },
2552 { "bcla+", B(16,1,1), B_MASK, PPCCOM, { BOE, B
178 #define BOE macro
[all...]
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Analysis/
H A DThreadSafety.cpp388 } else if (const BinaryOperator *BOE = dyn_cast<BinaryOperator>(Exp)) {
390 unsigned Sz = buildSExpr(BOE->getLHS(), CallCtx);
391 Sz += buildSExpr(BOE->getRHS(), CallCtx);

Completed in 85 milliseconds