Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp269 size_t BytesRemaining = Size - BytesToWrite; in write() local
270 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) { in write()
272 return write(Ptr + BytesToWrite, BytesRemaining); in write()
274 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); in write()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp290 auto BytesRemaining = LC.Data.load_command_data.cmdsize - BytesWritten; in writeLoadCommands() local
291 if (BytesRemaining > 0) { in writeLoadCommands()
292 ZeroFillBytes(OS, BytesRemaining); in writeLoadCommands()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp96 unsigned BytesRemaining = S.getSize(); in dumpSectionMemory() local
105 while (BytesRemaining > 0) { in dumpSectionMemory()
113 --BytesRemaining; in dumpSectionMemory()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp805 uint64_t BytesRemaining = DebugLineData.size() - DebugLineOffset; in parse() local
811 DebugLineOffset, ProgramLength, BytesRemaining)); in parse()
813 ProgramLength = BytesRemaining; in parse()