Home
last modified time | relevance | path

Searched refs:GetCurrentBitNo (Results 1 – 9 of 9) sorted by relevance

/external/llvm/tools/llvm-bcanalyzer/
Dllvm-bcanalyzer.cpp326 uint64_t BlockBitStart = Stream.GetCurrentBitNo(); in ParseBlock()
339 uint64_t BlockBitEnd = Stream.GetCurrentBitNo(); in ParseBlock()
370 uint64_t RecordStartBit = Stream.GetCurrentBitNo(); in ParseBlock()
378 uint64_t BlockBitEnd = Stream.GetCurrentBitNo(); in ParseBlock()
390 uint64_t SubBlockBitStart = Stream.GetCurrentBitNo(); in ParseBlock()
394 uint64_t SubBlockBitEnd = Stream.GetCurrentBitNo(); in ParseBlock()
422 Stream.GetCurrentBitNo()-RecordStartBit; in ParseBlock()
/external/clang/lib/Serialization/
DASTWriter.cpp1434 SLocEntryOffsets.push_back(Stream.GetCurrentBitNo()); in WriteSourceManagerBlock()
1441 SLocFileEntryOffsets.push_back(Stream.GetCurrentBitNo()); in WriteSourceManagerBlock()
1723 MacroOffsets[Name] = Stream.GetCurrentBitNo(); in WritePreprocessor()
1822 Stream.GetCurrentBitNo()); in WritePreprocessorDetail()
1829 MacroDefinitionOffsets[Position] = Stream.GetCurrentBitNo(); in WritePreprocessorDetail()
1831 MacroDefinitionOffsets.push_back(Stream.GetCurrentBitNo()); in WritePreprocessorDetail()
1846 Stream.GetCurrentBitNo()); in WritePreprocessorDetail()
1961 TypeOffsets.push_back(Stream.GetCurrentBitNo()); in WriteType()
1964 TypeOffsets[Index] = Stream.GetCurrentBitNo(); in WriteType()
2009 uint64_t Offset = Stream.GetCurrentBitNo(); in WriteDeclContextLexicalBlock()
[all …]
DASTWriterDecl.cpp1630 ReplacedDecls.push_back(std::make_pair(ID, Stream.GetCurrentBitNo())); in WriteDecl()
1636 DeclOffsets.push_back(Stream.GetCurrentBitNo()); in WriteDecl()
1639 DeclOffsets[Index] = Stream.GetCurrentBitNo(); in WriteDecl()
DASTReader.cpp1398 uint64_t Offset = Cursor.GetCurrentBitNo(); in ReadBlockAbbrevs()
1945 F.MacroStartOffset = F.MacroCursor.GetCurrentBitNo(); in ReadASTBlock()
1957 = F.PreprocessorDetailCursor.GetCurrentBitNo(); in ReadASTBlock()
DASTReaderDecl.cpp166 Off += F.DeclsCursor.GetCurrentBitNo(); in GetCurrentCursorOffset()
/external/llvm/include/llvm/Bitcode/
DBitstreamWriter.h84 uint64_t GetCurrentBitNo() const { return Out.size() * 8 + CurBit; } in GetCurrentBitNo() function
DBitstreamReader.h233 uint64_t GetCurrentBitNo() const { in GetCurrentBitNo() function
/external/clang/include/clang/Serialization/
DASTReader.h1390 : Cursor(Cursor), Offset(Cursor.GetCurrentBitNo()) { } in SavedStreamPosition()
/external/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1496 uint64_t CurBit = Stream.GetCurrentBitNo(); in RememberAndSkipFunctionBody()