Home
last modified time | relevance | path

Searched refs:addr_width (Results 1 – 5 of 5) sorted by relevance

/openbsd-src/gnu/usr.bin/binutils/gdb/
H A Dsolib.c693 int addr_width; in info_sharedlibrary_command() local
696 addr_width = 8 + 4; in info_sharedlibrary_command()
698 addr_width = 16 + 4; in info_sharedlibrary_command()
714 printf_unfiltered ("%-*s%-*s%-12s%s\n", addr_width, "From", in info_sharedlibrary_command()
715 addr_width, "To", "Syms Read", in info_sharedlibrary_command()
720 printf_unfiltered ("%-*s", addr_width, in info_sharedlibrary_command()
724 addr_width - 4) in info_sharedlibrary_command()
726 printf_unfiltered ("%-*s", addr_width, in info_sharedlibrary_command()
730 addr_width - 4) in info_sharedlibrary_command()
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Ddiagnose_unwind.py21 addr_width = process.GetAddressByteSize() * 2
42 … print('%2d: pc==0x%-*x fp==0x%-*x' % (frame_num, addr_width, addr_for_printing, addr_width, fp))
50 …t('%2d: pc==0x%-*x fp==0x%-*x %s %s + %d' % (frame_num, addr_width, addr_for_printing, addr_width,…
52 …print('%2d: pc==0x%-*x fp==0x%-*x %s' % (frame_num, addr_width, addr_for_printing, addr_width, fp,…
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DVMRange.cpp37 uint32_t addr_width) const { in Dump()
39 addr_width); in Dump()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DVMRange.h82 uint32_t addr_width = 8) const;
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DFormatEntity.cpp426 int addr_width = 0; in DumpAddressAndContent() local
428 addr_width = target->GetArchitecture().GetAddressByteSize() * 2; in DumpAddressAndContent()
430 if (addr_width == 0) in DumpAddressAndContent()
431 addr_width = 16; in DumpAddressAndContent()
439 s.Printf("0x%*.*" PRIx64, addr_width, addr_width, vaddr); in DumpAddressAndContent()