Home
last modified time | relevance | path

Searched refs:NextOffset (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DMinidumpEmitter.cpp31 size_t tell() const { return NextOffset; } in tell()
35 size_t Offset = NextOffset; in allocateCallback()
36 NextOffset += Size; in allocateCallback()
76 size_t NextOffset = 0; member in __anon5d17fa110111::BlobAllocator
111 assert(OS.tell() == BeginOffset + NextOffset && in writeTo()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DPaddingChecker.cpp294 CharUnits NextOffset = NewOffset.alignTo(Fields[0].Align); in calculateOptimalPad() local
295 NewPad += NextOffset - NewOffset; in calculateOptimalPad()
296 NewOffset = NextOffset; in calculateOptimalPad()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-config/
H A Dllvm-config.cpp266 const size_t NextOffset = DyLibComponentsStr.find(';', Offset); in GetAllDyLibComponents() local
267 DyLibComponents.push_back(DyLibComponentsStr.substr(Offset, NextOffset-Offset)); in GetAllDyLibComponents()
268 if (NextOffset == std::string::npos) { in GetAllDyLibComponents()
271 Offset = NextOffset + 1; in GetAllDyLibComponents()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Remarks/
H A DRemarkParser.cpp46 size_t NextOffset = in operator []() local
48 return StringRef(Buffer.data() + Offset, NextOffset - Offset - 1); in operator []()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/Symbolize/
H A DSymbolizableObjectFile.cpp134 uint32_t NextOffset = I != E ? I->Offset : Export.Offset + 1; in addCoffExportSymbols() local
136 uint64_t SymbolSize = NextOffset - Export.Offset; in addCoffExportSymbols()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DSourceManager.cpp1622 unsigned NextOffset; in getFileIDSize() local
1624 NextOffset = getNextLocalOffset(); in getFileIDSize()
1626 NextOffset = MaxLoadedOffset; in getFileIDSize()
1628 NextOffset = getSLocEntry(FileID::get(ID+1)).getOffset(); in getFileIDSize()
1630 return NextOffset - Entry.getOffset() - 1; in getFileIDSize()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1037 size_t NextOffset = SectionOffset + SubSectionSize; in printCodeViewSymbolSection() local
1038 NextOffset = alignTo(NextOffset, 4); in printCodeViewSymbolSection()
1039 if (NextOffset > SectionContents.size()) in printCodeViewSymbolSection()
1042 Data = SectionContents.drop_front(NextOffset); in printCodeViewSymbolSection()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
H A DDWARFLinker.cpp1373 uint64_t NextOffset = (Idx + 1 < U.getNumDIEs()) in cloneDIE() local
1381 SmallString<40> DIECopy(Data.getData().substr(Offset, NextOffset - Offset)); in cloneDIE()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp5296 signed NextOffset = FirstOffset.getImm() + 4; in expandLoadStoreDMacro() local
5297 MCOperand SecondOffset = MCOperand::createImm(NextOffset); in expandLoadStoreDMacro()
5299 if (!isInt<16>(FirstOffset.getImm()) || !isInt<16>(NextOffset)) in expandLoadStoreDMacro()
5343 signed NextOffset = FirstOffset.getImm() + 4; in expandStoreDM1Macro() local
5344 MCOperand SecondOffset = MCOperand::createImm(NextOffset); in expandStoreDM1Macro()
5346 if (!isInt<16>(FirstOffset.getImm()) || !isInt<16>(NextOffset)) in expandStoreDM1Macro()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp2044 unsigned NextOffset = SourceMgr.getNextLocalOffset(); in WriteSourceManagerBlock() local
2046 NextOffset = SourceMgr.getLocalSLocEntry(I + 1).getOffset(); in WriteSourceManagerBlock()
2047 Record.push_back(NextOffset - SLoc->getOffset() - 1); in WriteSourceManagerBlock()