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.cpp267 size_t BytesRemaining = Size - BytesToWrite; in write() local
268 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) { in write()
270 return write(Ptr + BytesToWrite, BytesRemaining); in write()
272 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); in write()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp288 auto BytesRemaining = LC.Data.load_command_data.cmdsize - BytesWritten; in writeLoadCommands() local
289 if (BytesRemaining > 0) { in writeLoadCommands()
290 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.cpp821 uint64_t BytesRemaining = DebugLineData.size() - DebugLineOffset; in parse() local
827 DebugLineOffset, ProgramLength, BytesRemaining)); in parse()
829 ProgramLength = BytesRemaining; in parse()