| /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/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...] |
| /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/StaticAnalyzer/Core/ |
| SValBuilder.cpp | 266 const BlockDataRegion *BD = MemMgr.getBlockDataRegion(BC, locContext, 268 return loc::MemRegionVal(BD);
|
| ExprEngineC.cpp | 201 const BlockDecl *BD = BE->getBlockDecl(); 203 SVal V = svalBuilder.getBlockPointer(BD, T, 217 auto CI = BD->capture_begin(); 218 auto CE = BD->capture_end();
|
| 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/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/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...] |
| /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/libexec/getty/ |
| gettytab.h | 105 #define BD gettynums[7].value
|
| /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/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/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| CallEvent.h | 594 const BlockDecl *BD = getDecl(); 595 if (!BD) 598 return BD->isConversionFromLambda();
|
| 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,
|
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGExprComplex.cpp | 715 Value *BD = Builder.CreateFMul(Op.LHS.second, Op.RHS.second, "mul_bd"); 721 ResR = Builder.CreateFSub(AC, BD, "mul_r"); 830 // (a+ib) / (c+id) = ((ac+bd)/(cc+dd)) + i((bc-ad)/(cc+dd)) 832 llvm::Value *BD = Builder.CreateFMul(LHSi, RHSi); // b*d 833 llvm::Value *ACpBD = Builder.CreateFAdd(AC, BD); // ac+bd 854 // (a+ib) / (c+id) = ((ac+bd)/(cc+dd)) + i((bc-ad)/(cc+dd)) 857 llvm::Value *Tmp3 = Builder.CreateAdd(Tmp1, Tmp2); // ac+bd
|
| CGExprConstant.cpp | 796 const CXXRecordDecl *BD = Base->getType()->getAsCXXRecordDecl(); 797 CharUnits BaseOffset = Layout.getBaseClassOffset(BD); 798 Bases.push_back(BaseInfo(BD, BaseOffset, BaseNo));
|
| CGClass.cpp | 2907 const BlockDecl *BD = BlockInfo->getBlockDecl(); 2908 const VarDecl *variable = BD->capture_begin()->getVariable(); 2928 for (auto param : BD->parameters())
|
| CodeGenModule.cpp | 1368 const BlockDecl *BD) { 1375 MangleCtx.mangleGlobalBlock(BD, 1378 MangleCtx.mangleCtorBlock(CD, GD.getCtorType(), BD, Out); 1380 MangleCtx.mangleDtorBlock(DD, GD.getDtorType(), BD, Out); 1382 MangleCtx.mangleBlock(cast<DeclContext>(D), BD, Out); 1384 auto Result = Manglings.insert(std::make_pair(Out.str(), BD));
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| StmtPrinter.cpp | 2492 BlockDecl *BD = Node->getBlockDecl(); 2499 } else if (!BD->param_empty() || cast<FunctionProtoType>(AFT)->isVariadic()) { 2501 for (BlockDecl::param_iterator AI = BD->param_begin(), 2502 E = BD->param_end(); AI != E; ++AI) { 2503 if (AI != BD->param_begin()) OS << ", "; 2510 if (!BD->param_empty()) OS << ", ";
|
| /src/external/cddl/osnet/dev/dtrace/x86/ |
| dis_tables.c | 130 BD, 2208 /* [7,0] */ TNSy("jo",BD), TNSy("jno",BD), TNSy("jb",BD), TNSy("jae",BD), 2209 /* [7,4] */ TNSy("je",BD), TNSy("jne",BD), TNSy("jbe",BD), TNSy("ja",BD), 2210 /* [7,8] */ TNSy("js",BD), TNSy("jns",BD), TNSy("jp",BD), TNSy("jnp",BD) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/ |
| RewriteModernObjC.cpp | 4062 BlockDecl *BD = CE->getBlockDecl(); 4068 } else if (BD->param_empty()) { 4077 for (BlockDecl::param_iterator AI = BD->param_begin(), 4078 E = BD->param_end(); AI != E; ++AI) { 4079 if (AI != BD->param_begin()) S += ", "; 4087 if (!BD->param_empty()) S += ", "; 4389 std::string BD = SynthesizeBlockDescriptor(DescTag, ImplTag, i, FunName, 4391 InsertText(FunLocStart, BD);
|
| RewriteObjC.cpp | 3273 BlockDecl *BD = CE->getBlockDecl(); 3279 } else if (BD->param_empty()) { 3288 for (BlockDecl::param_iterator AI = BD->param_begin(), 3289 E = BD->param_end(); AI != E; ++AI) { 3290 if (AI != BD->param_begin()) S += ", "; 3298 if (!BD->param_empty()) S += ", "; 3599 std::string BD = SynthesizeBlockDescriptor(DescTag, ImplTag, i, FunName, 3601 InsertText(FunLocStart, BD);
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaChecking.cpp | 826 BlockDecl *BD = cast<BlockExpr>(BlockArg)->getBlockDecl(); 827 ErrorLoc = BD->getParamDecl(ArgCounter)->getBeginLoc();
|