Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/tools/debugserver/source/MacOSX/
H A DMachVMRegion.h29 mach_vm_address_t BytesRemaining(mach_vm_address_t addr) const { in BytesRemaining() function
H A DMachVMMemory.cpp264 mach_vm_size_t region_bytes_left = vmRegion.BytesRemaining(curr_addr); in Write()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A Draw_ostream.cpp268 size_t BytesRemaining = Size - BytesToWrite; in write() local
269 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) { in write()
271 return write(Ptr + BytesToWrite, BytesRemaining); in write()
273 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); in write()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp289 auto BytesRemaining = LC.Data.load_command_data.cmdsize - BytesWritten; in writeLoadCommands() local
290 if (BytesRemaining > 0) { in writeLoadCommands()
291 ZeroFillBytes(OS, BytesRemaining); in writeLoadCommands()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp760 uint64_t BytesRemaining = DebugLineData.size() - DebugLineOffset; in parse() local
766 DebugLineOffset, ProgramLength, BytesRemaining)); in parse()
768 ProgramLength = BytesRemaining; in parse()