Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/Support/
H A Draw_ostream.cpp261 size_t BytesRemaining = Size - BytesToWrite; in write() local
262 if (BytesRemaining > size_t(OutBufEnd - OutBufCur)) { in write()
264 return write(Ptr + BytesToWrite, BytesRemaining); in write()
266 copy_to_buffer(Ptr + BytesToWrite, BytesRemaining); in write()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DMachOEmitter.cpp285 auto BytesRemaining = LC.Data.load_command_data.cmdsize - BytesWritten; in writeLoadCommands() local
286 if (BytesRemaining > 0) { in writeLoadCommands()
287 ZeroFillBytes(OS, BytesRemaining); in writeLoadCommands()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dparse-state.h190 std::size_t BytesRemaining() const { in BytesRemaining() function
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/flang/lib/Parser/
H A Dtoken-parsers.h626 std::size_t remain{state.BytesRemaining()}; in Parse()