Home
last modified time | relevance | path

Searched refs:BytesRemaining (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A Draw_ostream.cpp262 size_t BytesRemaining = Size - BytesToWrite; in write() local
263 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) { in write()
265 return write(Ptr + BytesToWrite, BytesRemaining); in write()
267 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); in write()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp259 auto BytesRemaining = LC.Data.load_command_data.cmdsize - BytesWritten; in writeLoadCommands() local
260 if (BytesRemaining > 0) { in writeLoadCommands()
261 ZeroFillBytes(OS, BytesRemaining); in writeLoadCommands()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp98 unsigned BytesRemaining = S.getSize(); in dumpSectionMemory() local
107 while (BytesRemaining > 0) { in dumpSectionMemory()
115 --BytesRemaining; in dumpSectionMemory()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp756 uint64_t BytesRemaining = DebugLineData.size() - DebugLineOffset; in parse() local
762 DebugLineOffset, ProgramLength, BytesRemaining)); in parse()
764 ProgramLength = BytesRemaining; in parse()