Lines Matching full:address
29 // 7.20 Address Range Table
31 // Each set of entries in the table of address ranges contained in
37 // containing the size in bytes of an address (or the offset portion of
38 // an address for segmented addressing) on the target system; and a
41 // of tuples. Each tuple consists of an address and a length, each in
42 // the size appropriate for an address on the target architecture.
58 // size of an address). The header is padded, if necessary, to the
70 static_assert(sizeof(arangeDescriptor.Address) ==
73 assert(sizeof(arangeDescriptor.Address) >= HeaderData.AddrSize);
76 arangeDescriptor.Address = data.getUnsigned(offset_ptr, HeaderData.AddrSize);
79 // Each set of tuples is terminated by a 0 for the address and 0
81 if (arangeDescriptor.Address || arangeDescriptor.Length)
84 break; // We are done if we get a zero address and length
93 OS << format("Address Range Header: length = 0x%8.8x, version = 0x%4.4x, ",
100 OS << format("[0x%*.*" PRIx64 " -", hex_width, hex_width, Desc.Address)