| /src/external/apache2/llvm/dist/llvm/tools/bugpoint/ |
| CrashDebugger.cpp | 75 BugDriver &BD; 78 ReducePassList(BugDriver &bd) : BD(bd) {} 96 if (BD.runPasses(BD.getProgram(), Prefix, PrefixOutput)) 99 OrigProgram = std::move(BD.Program); 101 BD.Program = parseInputFile(PrefixOutput, BD.getContext()); 102 if (BD.Program == nullptr) [all...] |
| Miscompilation.cpp | 47 BugDriver &BD; 50 ReduceMiscompilingPasses(BugDriver &bd) : BD(bd) {} 69 if (BD.runPasses(BD.getProgram(), Suffix, BitcodeResult, false /*delete*/, 73 BD.setPassesToRun(Suffix); 74 BD.EmitProgressBitcode(BD.getProgram(), "pass-error", false); 76 if (Error E = BD.debugOptimizerCrash() [all...] |
| /src/usr.bin/systat/ |
| icmp.c | 51 #define BD(row, str) LHD(row, str); RHD(row, str) 108 BD(2, "total messages"); 109 BD(9, "echo response"); 110 BD(10, "echo request"); 111 BD(11, "destination unreachable"); 112 BD(12, "redirect"); 113 BD(13, "time-to-live exceeded"); 114 BD(14, "parameter problem");
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| MangleNumberingContext.h | 41 virtual unsigned getManglingNumber(const BlockDecl *BD) = 0;
|
| Mangle.h | 78 unsigned getBlockId(const BlockDecl *BD, bool Local) { 82 Result = BlockIds.insert(std::make_pair(BD, BlockIds.size())); 136 void mangleGlobalBlock(const BlockDecl *BD, 140 const BlockDecl *BD, raw_ostream &Out); 142 const BlockDecl *BD, raw_ostream &Out); 143 void mangleBlock(const DeclContext *DC, const BlockDecl *BD,
|
| /src/external/apache2/llvm/dist/clang/include/clang/Analysis/ |
| AnalysisDeclContext.h | 174 getReferencedBlockVars(const BlockDecl *BD); 188 const BlockDecl *BD, const void *Data); 350 const BlockDecl *BD; 356 const LocationContext *ParentLC, const BlockDecl *BD, 358 : LocationContext(Block, ADC, ParentLC, ID), BD(BD), Data(Data) {} 363 const BlockDecl *getBlockDecl() const { return BD; } 370 const LocationContext *ParentLC, const BlockDecl *BD, 372 ProfileCommon(ID, Block, ADC, ParentLC, BD); 408 /// \param BD The BlockDecl [all...] |
| AnyCall.h | 151 } else if (const auto *BD = dyn_cast<BlockDecl>(D)) { 152 return BD->parameters();
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| StackAddrEscapeChecker.cpp | 91 const BlockDecl *BD = BR->getCodeRegion()->getDecl(); 92 SourceLocation L = BD->getBeginLoc(); 93 range = BD->getSourceRange();
|
| CallAndMessageChecker.cpp | 131 const ParmVarDecl *ParamDecl, const char *BD, 189 std::unique_ptr<BugType> &BT, const ParmVarDecl *ParamDecl, const char *BD, 224 LazyInit_BT(BD, BT); 289 const char *BD = "Uninitialized argument value"; 291 if (uninitRefOrPointer(C, V, ArgRange, ArgEx, BT, ParamDecl, BD, 301 LazyInit_BT(BD, BT); 331 LazyInit_BT(BD, BT);
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| AnalysisDeclContext.cpp | 118 } else if (const auto *BD = dyn_cast<BlockDecl>(D)) 119 return BD->getBody(); 151 if (const auto *BD = dyn_cast<BlockDecl>(D)) { 153 for (const auto &I : BD->captures()) { 320 const LocationContext *ParentLC, const BlockDecl *BD, const void *Data) { 322 BD, Data); 368 Profile(ID, getAnalysisDeclContext(), getParent(), BD, Data); 392 const BlockDecl *BD, const void *Data) { 394 BlockInvocationContext::Profile(ID, ADC, ParentLC, BD, Data); 400 L = new BlockInvocationContext(ADC, ParentLC, BD, Data, ++NewID) [all...] |
| LiveVariables.cpp | 73 for (const BindingDecl *BD : DD->bindings()) 74 alive |= liveBindings.contains(BD); 344 if (const BindingDecl* BD = dyn_cast<BindingDecl>(D)) { 345 Killed = !BD->getType()->isReferenceType(); 347 val.liveBindings = LV.BSetFact.remove(val.liveBindings, BD); 373 if (const auto *BD = dyn_cast<BindingDecl>(D)) { 375 val.liveBindings = LV.BSetFact.add(val.liveBindings, BD); 385 for (const auto *BD : DD->bindings()) 386 val.liveBindings = LV.BSetFact.remove(val.liveBindings, BD);
|
| CallGraph.cpp | 141 if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) 142 addNodeForDecl(BD, true);
|
| /src/external/apache2/llvm/dist/clang/lib/AST/Interp/ |
| Program.cpp | 225 auto GetBaseDesc = [this](const RecordDecl *BD, Record *BR) -> Descriptor * { 228 return allocateDescriptor(BD, BR, /*isConst=*/false, 241 const RecordDecl *BD = Spec.getType()->castAs<RecordType>()->getDecl(); 242 Record *BR = getOrCreateRecord(BD); 243 if (Descriptor *Desc = GetBaseDesc(BD, BR)) { 245 Bases.push_back({BD, Size, Desc, BR}); 253 const RecordDecl *BD = Spec.getType()->castAs<RecordType>()->getDecl(); 254 Record *BR = getOrCreateRecord(BD); 256 if (Descriptor *Desc = GetBaseDesc(BD, BR)) { 258 VirtBases.push_back({BD, VirtSize, Desc, BR}) [all...] |
| EvalEmitter.cpp | 156 const Record::Base *BD = Record->getBase(I); 157 QualType BaseTy = Ctx.getASTContext().getRecordType(BD->Decl); 158 const Pointer &BP = Ptr.atField(BD->Offset);
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| Mangle.cpp | 38 const BlockDecl *BD, 40 unsigned discriminator = Context.getBlockId(BD, true); 250 void MangleContext::mangleGlobalBlock(const BlockDecl *BD, 253 unsigned discriminator = getBlockId(BD, false); 268 CXXCtorType CT, const BlockDecl *BD, 273 mangleFunctionBlock(*this, Buffer, BD, ResStream); 277 CXXDtorType DT, const BlockDecl *BD, 282 mangleFunctionBlock(*this, Buffer, BD, ResStream); 285 void MangleContext::mangleBlock(const DeclContext *DC, const BlockDecl *BD, 302 mangleCtorBlock(CD, /*CT*/ Ctor_Complete, BD, Out) [all...] |
| ItaniumCXXABI.cpp | 155 unsigned getManglingNumber(const BlockDecl *BD) override {
|
| MicrosoftCXXABI.cpp | 46 unsigned getManglingNumber(const BlockDecl *BD) override {
|
| /src/sys/arch/powerpc/powerpc/ |
| db_disasm.c | 700 int BD; 701 BD = extract_field(instr, 31 - 29, 14); 702 BD = BD << 18; 703 BD = BD >> 16; 704 BD += loc; 705 if ((vaddr_t)BD < loc) 897 int BD; 898 BD = extract_field(instr, 31 - 29, 14) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| MemRegion.cpp | 193 } else if (const auto *BD = dyn_cast<BlockDecl>(D)) { 194 assert(Index < BD->param_size()); 195 return BD->parameters()[Index]; 354 const BlockDecl *BD, CanQualType, 358 ID.AddPointer(BD); 362 BlockCodeRegion::ProfileRegion(ID, BD, locTy, AC, superRegion); 933 } else if (const auto *BD = dyn_cast<BlockDecl>(D)) { 934 if (Index < BD->param_size() && BD->parameters()[Index] == PVD) 999 else if (const auto *BD = dyn_cast<BlockDecl>(STCD)) [all...] |
| /src/libexec/getty/ |
| gettytab.h | 105 #define BD gettynums[7].value
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Frontend/ |
| AnalysisConsumer.cpp | 326 bool VisitBlockDecl(BlockDecl *BD) { 327 if (BD->hasBody()) { 331 if (!BD->isDependentContext()) { 332 HandleCode(BD, RecVisitorMode);
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_read_support_filter_lz4.c | 208 unsigned char flag, BD; 221 BD = buffer[5]; 223 if (((BD & 0x70) >> 4) < 4) 226 if (BD & ~0x70) 433 unsigned char flag, bd; local 462 /* BD */ 463 bd = (unsigned char)read_buf[1]; 465 if (bd & 0x8f)
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
| PrettyTypeDumper.cpp | 283 BuiltinDumper BD(Printer); 284 BD.start(Symbol);
|
| /src/sys/dev/i2c/ |
| sensirion_voc_algorithm.c | 76 // BD 16 * 16 -> 32 bit products 88 uint32_t BD = B * D; 94 uint32_t product_lo = BD + ad_cb_temp; 95 if (product_lo < BD)
|
| /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| MemRegion.h | 621 const BlockDecl *BD; 625 BlockCodeRegion(const BlockDecl *bd, CanQualType lTy, 627 : CodeTextRegion(sreg, BlockCodeRegionKind), BD(bd), AC(ac), locTy(lTy) { 628 assert(bd); 633 static void ProfileRegion(llvm::FoldingSetNodeID& ID, const BlockDecl *BD, 643 return BD; 1462 const BlockCodeRegion *getBlockCodeRegion(const BlockDecl *BD,
|