Searched refs:BlockID (Results 1 - 13 of 13) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
H A DBlockCounter.cpp26 unsigned BlockID; member in class:__anon16494::CountKey
30 : CallSite(CS), BlockID(ID) {}
33 return (CallSite == RHS.CallSite) && (BlockID == RHS.BlockID);
37 return (CallSite == RHS.CallSite) ? (BlockID < RHS.BlockID)
43 ID.AddInteger(BlockID);
60 unsigned BlockID) const {
62 CountMap::data_type* T = M.lookup(CountKey(CallSite, BlockID));
77 unsigned BlockID) {
75 IncrementCount(BlockCounter BC, const StackFrameContext *CallSite, unsigned BlockID) argument
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBlockCounter.h41 unsigned BlockID) const;
52 unsigned BlockID);
/external/llvm/include/llvm/Bitcode/
H A DBitstreamWriter.h58 unsigned BlockID; member in struct:llvm::BitstreamWriter::BlockInfo
198 BlockInfo *getBlockInfo(unsigned BlockID) { argument
199 // Common case, the most recent entry matches BlockID.
200 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID)
205 if (BlockInfoRecords[i].BlockID == BlockID)
210 void EnterSubblock(unsigned BlockID, unsigned CodeLen) { argument
214 EmitVBR(BlockID, bitc::BlockIDWidth);
231 // If there is a blockinfo for this BlockID, ad
512 SwitchToBlockID(unsigned BlockID) argument
520 getOrCreateBlockInfo(unsigned BlockID) argument
534 EmitBlockInfoAbbrev(unsigned BlockID, BitCodeAbbrev *Abbv) argument
[all...]
H A DBitstreamReader.h40 unsigned BlockID; member in struct:llvm::BitstreamReader::BlockInfo
106 const BlockInfo *getBlockInfo(unsigned BlockID) const {
107 // Common case, the most recent entry matches BlockID.
108 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID)
113 if (BlockInfoRecords[i].BlockID == BlockID)
118 BlockInfo &getOrCreateBlockInfo(unsigned BlockID) { argument
119 if (const BlockInfo *BI = getBlockInfo(BlockID))
124 BlockInfoRecords.back().BlockID
[all...]
/external/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp81 static const char *GetBlockName(unsigned BlockID, argument
84 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
85 if (BlockID == bitc::BLOCKINFO_BLOCK_ID)
92 StreamFile.getBlockInfo(BlockID)) {
100 switch (BlockID) {
117 static const char *GetCodeName(unsigned CodeID, unsigned BlockID, argument
120 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
121 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
134 StreamFile.getBlockInfo(BlockID)) {
143 switch (BlockID) {
324 ParseBlock(BitstreamCursor &Stream, unsigned BlockID, unsigned IndentLevel) argument
527 unsigned BlockID = Stream.ReadSubBlockID(); local
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Daddressmap-inl.h235 static int BlockID(Number address) { function in class:AddressMap
298 for (Entry* e = c->blocks[BlockID(num)]; e != NULL; e = e->next) {
313 const int block = BlockID(num);
344 for (Entry** p = &c->blocks[BlockID(num)]; *p != NULL; p = &(*p)->next) {
369 const int block = BlockID(num);
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Daddressmap-inl.h235 static int BlockID(Number address) { function in class:AddressMap
298 for (Entry* e = c->blocks[BlockID(num)]; e != NULL; e = e->next) {
313 const int block = BlockID(num);
344 for (Entry** p = &c->blocks[BlockID(num)]; *p != NULL; p = &(*p)->next) {
369 const int block = BlockID(num);
/external/clang/tools/libclang/
H A DCXLoadedDiagnostic.cpp283 unsigned BlockID = 0; local
285 BlockID, true);
299 switch (BlockID) {
331 unsigned BlockID = Stream.ReadSubBlockID(); local
332 if (BlockID == llvm::bitc::BLOCKINFO_BLOCK_ID) {
339 blockOrRecordID = BlockID;
/external/llvm/lib/Bitcode/Reader/
H A DBitstreamReader.cpp58 bool BitstreamCursor::EnterSubBlock(unsigned BlockID, unsigned *NumWordsP) { argument
65 BitStream->getBlockInfo(BlockID)) {
/external/clang/include/clang/Analysis/
H A DCFG.h359 /// BlockID - A numerical ID assigned to a CFGBlock during construction
361 unsigned BlockID;
386 BlockID(blockid), Preds(C, 1), Succs(C, 1), HasNoReturnElement(false),
527 unsigned getBlockID() const { return BlockID; }
/external/clang/lib/Analysis/
H A DUninitializedValues.cpp561 unsigned BlockID = Block->getBlockID(); local
563 if (SuccsVisited[BlockID] && SuccsVisited[BlockID] < Block->succ_size() &&
/external/clang/include/clang/Serialization/
H A DASTReader.h1486 /// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the
1489 bool ReadBlockAbbrevs(llvm::BitstreamCursor &Cursor, unsigned BlockID);
/external/clang/lib/Serialization/
H A DASTReader.cpp1084 /// ReadBlockAbbrevs - Enter a subblock of the specified BlockID with the
1087 bool ASTReader::ReadBlockAbbrevs(BitstreamCursor &Cursor, unsigned BlockID) { argument
1088 if (Cursor.EnterSubBlock(BlockID)) {
3346 static bool SkipCursorToBlock(BitstreamCursor &Cursor, unsigned BlockID) { argument
3360 if (Entry.ID == BlockID) {
3361 if (Cursor.EnterSubBlock(BlockID))

Completed in 392 milliseconds