| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| BlockCounter.cpp | 25 unsigned BlockID; 29 : CallSite(CS), BlockID(ID) {} 32 return (CallSite == RHS.CallSite) && (BlockID == RHS.BlockID); 36 return std::tie(CallSite, BlockID) < std::tie(RHS.CallSite, RHS.BlockID); 41 ID.AddInteger(BlockID); 58 unsigned BlockID) const { 60 CountMap::data_type* T = M.lookup(CountKey(CallSite, BlockID)); 75 unsigned BlockID) { [all...] |
| WorkList.cpp | 139 using BlockID = unsigned; 140 using LocIdentifier = std::pair<BlockID, const StackFrameContext *>; 194 using BlockID = unsigned; 195 using LocIdentifier = std::pair<BlockID, const StackFrameContext *>;
|
| /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| BlockCounter.h | 38 unsigned BlockID) const; 49 unsigned BlockID);
|
| /src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| ThreadSafetyTIL.cpp | 162 // Each block will be written into the Blocks array in order, and its BlockID 174 BlockID = --ID; 175 Blocks[BlockID] = this; 200 BlockID = ID++; 201 Blocks[BlockID] = this; 213 if (Pred->BlockID >= BlockID) continue; 222 if (Candidate->BlockID > Alternate->BlockID) 240 if (Succ->BlockID <= BlockID) continue [all...] |
| UninitializedValues.cpp | 635 unsigned BlockID = Block->getBlockID(); 637 if (SuccsVisited[BlockID] && SuccsVisited[BlockID] < Block->succ_size() &&
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Bitstream/ |
| BitstreamWriter.h | 71 unsigned BlockID; 270 BlockInfo *getBlockInfo(unsigned BlockID) { 271 // Common case, the most recent entry matches BlockID. 272 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID) 277 if (BlockInfoRecords[i].BlockID == BlockID) 282 void EnterSubblock(unsigned BlockID, unsigned CodeLen) { 284 // [ENTER_SUBBLOCK, blockid, newcodelen, <align4bytes>, blocklen] 286 EmitVBR(BlockID, bitc::BlockIDWidth) [all...] |
| BitstreamReader.h | 43 unsigned BlockID = 0; 55 const BlockInfo *getBlockInfo(unsigned BlockID) const { 56 // Common case, the most recent entry matches BlockID. 57 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID) 62 if (BlockInfoRecords[i].BlockID == BlockID) 67 BlockInfo &getOrCreateBlockInfo(unsigned BlockID) { 68 if (const BlockInfo *BI = getBlockInfo(BlockID)) 73 BlockInfoRecords.back().BlockID = BlockID [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| TestAfterDivZeroChecker.cpp | 29 unsigned BlockID; 34 : ZeroSymbol(S), BlockID(B), SFC(SFC) {} 39 return BlockID == X.BlockID && SFC == X.SFC && ZeroSymbol == X.ZeroSymbol; 43 if (BlockID != X.BlockID) 44 return BlockID < X.BlockID; 51 ID.AddInteger(BlockID);
|
| /src/sys/dev/raidframe/ |
| rf_declusterPQ.c | 285 RF_StripeNum_t BlockID, BlockOffset, RepIndex; 303 BlockID = TableOffset / info->PUsPerBlock; 304 BlockOffset = TableOffset - BlockID * info->PUsPerBlock; 305 BlockID %= info->BlocksPerTable; 321 *col = info->LayoutTable[BlockID][BlockOffset]; 325 rf_remap_to_spare_space(layoutPtr, info, FullTableID, TableID, BlockID, (base_suid) ? 1 : 0, SpareRegion, col, &outSU); 332 outSU += info->OffsetTable[BlockID][BlockOffset] * layoutPtr->SUsPerPU; /* offs to the PU */ 352 RF_StripeNum_t BlockID, RepIndex; 367 /* compute BlockID and RepIndex exactly as before */ 371 BlockID = TableOffset / info->PUsPerBlock [all...] |
| rf_decluster.c | 325 RF_StripeNum_t BlockID, BlockOffset, RepIndex; 342 BlockID = TableOffset / info->PUsPerBlock; 343 BlockOffset = TableOffset - BlockID * info->PUsPerBlock; 344 BlockID %= info->BlocksPerTable; 348 *col = info->LayoutTable[BlockID][BlockOffset]; 353 rf_remap_to_spare_space(layoutPtr, info, FullTableID, TableID, BlockID, (base_suid) ? 1 : 0, SpareRegion, col, &outSU); 360 outSU += info->OffsetTable[BlockID][BlockOffset] * layoutPtr->SUsPerPU; /* offs to the PU */ 383 RF_StripeNum_t BlockID, RepIndex; 397 /* compute BlockID and RepIndex exactly as before */ 402 /* BlockID = (TableOffset / info->PUsPerBlock) [all...] |
| rf_decluster.h | 129 RF_StripeNum_t TableID, RF_SectorNum_t BlockID, RF_StripeNum_t base_suid,
|
| /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/ |
| BitcodeAnalyzer.cpp | 24 static Optional<const char *> GetBlockName(unsigned BlockID, 28 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) { 29 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) 36 BlockInfo.getBlockInfo(BlockID)) { 44 switch (BlockID) { 87 static Optional<const char *> GetCodeName(unsigned CodeID, unsigned BlockID, 91 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) { 92 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) { 109 BlockInfo.getBlockInfo(BlockID)) { 121 switch (BlockID) { [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/ |
| BitcodeAnalyzer.h | 94 Error parseBlock(unsigned BlockID, unsigned IndentLevel,
|
| /src/external/apache2/llvm/dist/clang/lib/APINotes/ |
| APINotesFormat.h | 38 enum BlockID {
|
| /src/external/apache2/llvm/dist/llvm/lib/Remarks/ |
| BitstreamRemarkParser.cpp | 157 static Error parseBlock(T &ParserHelper, unsigned BlockID, 163 if (Next->Kind != BitstreamEntry::SubBlock || Next->ID != BlockID) 168 if (Stream.EnterSubBlock(BlockID)) 248 static Expected<bool> isBlock(BitstreamCursor &Stream, unsigned BlockID) { 257 Result = Next->ID == BlockID;
|
| BitstreamRemarkSerializer.cpp | 35 static void initBlock(unsigned BlockID, BitstreamWriter &Bitstream, 38 R.push_back(BlockID);
|
| /src/external/apache2/llvm/dist/llvm/lib/Object/ |
| ELF.cpp | 651 for (uint32_t BlockID = 0; !ULEBSizeErr && Cur && (BlockID < NumBlocks); 652 ++BlockID) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Bitstream/Reader/ |
| BitstreamReader.cpp | 21 Error BitstreamCursor::EnterSubBlock(unsigned BlockID, unsigned *NumWordsP) { 29 BlockInfo->getBlockInfo(BlockID)) {
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
| VPlan.h | 2110 SmallDenseMap<const VPBlockBase *, unsigned> BlockID; 2132 return BlockID.count(Block) ? BlockID[Block] : BlockID[Block] = BID++;
|
| /src/external/apache2/llvm/dist/clang/include/clang/Analysis/ |
| CFG.h | 783 unsigned BlockID; 860 explicit CFGBlock(unsigned blockid, BumpVectorContext &C, CFG *parent) 861 : Elements(C), Terminator(nullptr), BlockID(blockid), Preds(C, 1), 1074 unsigned getBlockID() const { return BlockID; }
|
| /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/ |
| ThreadSafetyTIL.h | 1533 : SExpr(COP_BasicBlock), Arena(A), BlockID(0), Visited(false) {} 1536 : SExpr(COP_BasicBlock), Arena(A), BlockID(0), Visited(false), 1542 int blockID() const { return BlockID; } 1661 unsigned BlockID : 31; 1735 /// Block::blockID() will return a number less than numBlocks();
|
| /src/external/apache2/llvm/dist/llvm/tools/obj2yaml/ |
| elf2yaml.cpp | 858 for (uint64_t BlockID = 0; Cur && BlockID < NumBlocks; ++BlockID) {
|
| /src/external/apache2/llvm/dist/clang/include/clang/Serialization/ |
| ASTReader.h | 1901 /// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the 1904 static bool ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor, unsigned BlockID,
|
| /src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| ASTReader.cpp | 1630 /// Enter a subblock of the specified BlockID with the specified cursor. Read 1633 bool ASTReader::ReadBlockAbbrevs(BitstreamCursor &Cursor, unsigned BlockID, 1635 if (llvm::Error Err = Cursor.EnterSubBlock(BlockID)) { 4163 static bool SkipCursorToBlock(BitstreamCursor &Cursor, unsigned BlockID) { 4189 if (Entry.ID == BlockID) { 4190 if (llvm::Error Err = Cursor.EnterSubBlock(BlockID)) {
|