| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| blockexit.d | 32 * BE stands for BlockExit. 37 enum BE : int 61 * BE.xxxx 77 result = BE.none; 89 result = BE.none; 94 result = BE.fallthru; 99 result = BE.halt; 106 result = BE.halt; 111 result = BE.halt; 120 result = BE.fallthru [all...] |
| canthrow.d | 21 import dmd.blockexit : BE, checkThrow; 34 * Status indicating what kind of throwable might be caused by an expression. 36 * This is a subset of `BE` restricted to the values actually used by `canThrow`. 38 enum CT : BE 41 none = BE.none, 44 exception = BE.throw_, 47 error = BE.errthrow, 54 extern (C++) /* CT */ BE canThrow(Expression e, FuncDeclaration func, bool mustNotThrow)
|
| /src/sys/lib/libkern/arch/hppa/ |
| prefix.h | 13 * copies, and that the name of Hewlett-Packard Company not be 42 ! BE R%lbl-labl/**/lbl(sr7,r1) 48 ! BE,N R%lbl-labl/**/lbl(sr7,r1) 62 #define MILLI_BE(lbl) BE lbl(sr7,r0) 63 #define MILLI_BEN(lbl) BE,n lbl(sr7,r0) 68 #define MILLIRETN BE,n 0(sr0,r31) 69 #define MILLIRET BE 0(sr0,r31) 70 #define MILLI_RETN BE,n 0(sr0,r31) 71 #define MILLI_RET BE 0(sr0,r31)
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| UndefCapturedBlockVarChecker.cpp | 32 void checkPostStmt(const BlockExpr *BE, CheckerContext &C) const; 51 UndefCapturedBlockVarChecker::checkPostStmt(const BlockExpr *BE, 53 if (!BE->getBlockDecl()->hasCaptures()) 57 auto *R = cast<BlockDataRegion>(C.getSVal(BE).getAsRegion()); 87 if (const Expr *Ex = FindBlockDeclRefExpr(BE->getBody(), VD))
|
| CStringSyntaxChecker.cpp | 85 /// to be larger than the destination can handle. 130 if (const auto *BE = dyn_cast<BinaryOperator>(LenArg->IgnoreParenCasts())) { 132 if (BE->getOpcode() == BO_Sub) { 133 const Expr *L = BE->getLHS(); 134 const Expr *R = BE->getRHS(); 180 // than the destination can possibly handle if its size can be defined. 188 if (const auto *BE = 190 DstArgDRE = dyn_cast<DeclRefExpr>(BE->getLHS()->IgnoreParenImpCasts()); 191 if (BE->getOpcode() == BO_Add) { 192 if ((IL = dyn_cast<IntegerLiteral>(BE->getRHS()->IgnoreParenImpCasts()))) [all...] |
| AnalyzerStatsChecker.cpp | 62 if (Optional<BlockEntrance> BE = P.getAs<BlockEntrance>()) { 63 const CFGBlock *CB = BE->getBlock(); 122 const BlockEdge &BE = I->first; 123 const CFGBlock *Exit = BE.getDst();
|
| DivZeroChecker.cpp | 38 if (const auto *BE = dyn_cast<BinaryOperator>(S)) 39 return BE->getRHS(); 95 // If we get here, then the denom should not be zero. We abandon the implicit
|
| ObjCUnusedIVarsChecker.cpp | 45 if (const BlockExpr *BE = dyn_cast<BlockExpr>(S)) { 46 Scan(M, BE->getBody()); 161 "(although it may be used by category methods).";
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/ |
| NVPTXAllocaHoisting.cpp | 46 for (BasicBlock::iterator BI = I->begin(), BE = I->end(); BI != BE;) {
|
| NVPTXLowerAggrCopies.cpp | 69 for (Function::iterator BI = F.begin(), BE = F.end(); BI != BE; ++BI) {
|
| /src/external/gpl2/xcvs/dist/lib/ |
| regexec.c | 11 This program is distributed in the hope that it will be useful, 275 the first STOP characters of the concatenation of the strings should be 347 if (BE (length1 < 0 || length2 < 0 || stop < 0 || len < length1, 0)) 356 if (BE (s == NULL, 0)) 396 if (BE (start < 0 || start > length, 0)) 402 if (BE (length_offset - start_offset < range, 0)) 404 else if (BE (range < - start_offset, 0)) 409 if (BE ((last_start < start) != (range < 0), 0)) 417 if (BE (length < last_start, 0)) 419 else if (BE (last_start < 0, 0) [all...] |
| regex_internal.c | 11 This program is distributed in the hope that it will be useful, 56 if (BE (ret != REG_NOERROR, 0)) 81 if (BE (ret != REG_NOERROR, 0)) 94 if (BE (ret != REG_NOERROR, 0)) 101 if (BE (ret != REG_NOERROR, 0)) 140 if (BE (new_wcs == NULL, 0)) 146 if (BE (new_offsets == NULL, 0)) 156 if (BE (new_mbs == NULL, 0)) 189 Then wide character buffer will be: 222 if (BE (pstr->trans != NULL, 0) [all...] |
| regcomp.c | 11 This program is distributed in the hope that it will be useful, 128 in regex.h. Obviously the order here has to be same as there. 130 but why not be nice? */ 242 also be assigned to arbitrarily: each pattern buffer stores its own 243 syntax, so it can be changed between regex compilations. */ 411 PREG is a regex_t *. We do not expect any fields to be initialized, 435 versions of letters to be equivalent when matching. 457 if (BE (preg->re_fastmap == NULL, 0)) 483 if (BE (ret == REG_NOERROR, 1)) 510 if (BE (errcode < [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/MCTargetDesc/ |
| CSKYMCExpr.cpp | 66 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Expr); 67 fixELFSymbolsInTLSFixupsImpl(BE->getLHS(), Asm); 68 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm); 73 // We're known to be under a TLS fixup, so any symbol should be 74 // modified. There should be only one.
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/MCTargetDesc/ |
| XCoreInstPrinter.cpp | 55 if (const MCBinaryExpr *BE = dyn_cast<MCBinaryExpr>(Expr)) { 56 SRE = dyn_cast<MCSymbolRefExpr>(BE->getLHS()); 57 const MCConstantExpr *CE = dyn_cast<MCConstantExpr>(BE->getRHS()); 58 assert(SRE && CE && "Binary expression must be sym+const.");
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| BlockExtractor.cpp | 72 BlockExtractor BE; 79 : ModulePass(ID), BE(EraseFunctions) { 87 BE.init(MassagedGroupsOfBlocks); 93 : ModulePass(ID), BE(EraseFunctions) { 94 BE.init(GroupsOfBlocksToExtract); 252 return BE.runOnModule(M); 257 BlockExtractor BE(false); 258 BE.init(SmallVector<SmallVector<BasicBlock *, 16>, 0>()); 259 return BE.runOnModule(M) ? PreservedAnalyses::none()
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| WorkList.cpp | 151 auto BE = N->getLocation().getAs<BlockEntrance>(); 153 if (!BE) { 159 BE->getBlock()->getBlockID(), 233 if (auto BE = N->getLocation().getAs<BlockEntrance>()) { 235 BE->getBlock()->getBlockID(), 295 if (auto BE = N->getLocation().getAs<BlockEntrance>()) 296 NumVisited = NumReached[BE->getBlock()]++;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/ |
| AArch64MCExpr.cpp | 123 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Expr); 124 fixELFSymbolsInTLSFixupsImpl(BE->getLHS(), Asm); 125 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm); 130 // We're known to be under a TLS fixup, so any symbol should be 131 // modified. There should be only one.
|
| /src/external/apache2/llvm/dist/llvm/lib/XRay/ |
| FDRRecordProducer.cpp | 118 // rely on the buffer extents record to determine how many bytes we should be 133 auto BE = cast<BufferExtents>(R.get()); 134 CurrentBufferBytes = BE->size(); 145 // metadata record should be loaded. 180 if (auto BE = dyn_cast<BufferExtents>(R.get())) { 181 CurrentBufferBytes = BE->size();
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/MCTargetDesc/ |
| ARCInstPrinter.cpp | 118 if (const auto *BE = dyn_cast<MCBinaryExpr>(Expr)) { 119 SRE = dyn_cast<MCSymbolRefExpr>(BE->getLHS()); 120 const auto *CE = dyn_cast<MCConstantExpr>(BE->getRHS()); 121 assert(SRE && CE && "Binary expression must be sym+const."); 161 assert(base.isReg() && "Base should be register."); 162 assert(offset.isImm() && "Offset should be immediate.");
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/MCTargetDesc/ |
| RISCVMCExpr.cpp | 183 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Expr); 184 fixELFSymbolsInTLSFixupsImpl(BE->getLHS(), Asm); 185 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm); 190 // We're known to be under a TLS fixup, so any symbol should be 191 // modified. There should be only one.
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/VE/MCTargetDesc/ |
| VEMCExpr.cpp | 190 const MCBinaryExpr *BE = cast<MCBinaryExpr>(Expr); 191 fixELFSymbolsInTLSFixupsImpl(BE->getLHS(), Asm); 192 fixELFSymbolsInTLSFixupsImpl(BE->getRHS(), Asm); 197 // We're known to be under a TLS fixup, so any symbol should be 198 // modified. There should be only one.
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/MCTargetDesc/ |
| BPFInstPrinter.cpp | 38 if (const MCBinaryExpr *BE = dyn_cast<MCBinaryExpr>(Expr)) 39 SRE = dyn_cast<MCSymbolRefExpr>(BE->getLHS());
|
| /src/external/apache2/llvm/dist/llvm/lib/MC/ |
| MCExpr.cpp | 115 const MCBinaryExpr &BE = cast<MCBinaryExpr>(*this); 118 if (isa<MCConstantExpr>(BE.getLHS()) || isa<MCSymbolRefExpr>(BE.getLHS())) { 119 BE.getLHS()->print(OS, MAI); 122 BE.getLHS()->print(OS, MAI); 126 switch (BE.getOpcode()) { 129 if (const MCConstantExpr *RHSC = dyn_cast<MCConstantExpr>(BE.getRHS())) { 160 if (isa<MCConstantExpr>(BE.getRHS()) || isa<MCSymbolRefExpr>(BE.getRHS())) { 161 BE.getRHS()->print(OS, MAI) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| FlattenCFG.cpp | 176 // Condition's unique use should be the branch instruction. 182 // These are internal condition blocks to be merged from, e.g., 184 // Should not be address-taken. 188 // Instructions in the internal condition blocks should be safe 190 for (BasicBlock::iterator BI = Pred->begin(), BE = PBI->getIterator(); 191 BI != BE;) { 197 // This is the condition block to be merged into, e.g. BB1 in 225 // Case 1: PS(BB3) should be an unconditional branch. 354 // For simplicity and speed, data dependency check can be 360 for (BasicBlock::iterator BI(PBI2), BE(PTI2); BI != BE; ++BI) [all...] |