Home | History | Annotate | Download | only in NaCl

Lines Matching defs:BlockID

124     explicit BlockInfo(unsigned BlockID)
125 : BlockID(BlockID), Abbrevs() {}
127 unsigned getBlockID() const { return BlockID; }
128 void setBlockID(unsigned ID) { BlockID = ID; }
132 unsigned BlockID;
172 BlockInfo *getBlockInfo(unsigned BlockID) {
173 auto Pos = KnownInfos.find(BlockID);
176 return getOrCreateUnknownBlockInfo(BlockID);
219 BlockInfo *getOrCreateUnknownBlockInfo(unsigned BlockID);
295 BlockInfo *getBlockInfo(unsigned BlockID) {
296 return BlockInfoRecords->getBlockInfo(BlockID);
796 // [ENTER_SUBBLOCK, blockid, newcodelen, <align4bytes>, blocklen]
798 /// Having read the ENTER_SUBBLOCK code, read the BlockID for the block.
803 /// Having read the ENTER_SUBBLOCK abbrevid and a BlockID, skip over the body
824 bool EnterSubBlock(unsigned BlockID, unsigned *NumWordsP = nullptr);