Home
last modified time | relevance | path

Searched defs:SectionHeader32 (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/debug/pe/
Dsection.go16 type SectionHeader32 struct { struct
17 Name [8]uint8
18 VirtualSize uint32
19 VirtualAddress uint32
20 SizeOfRawData uint32
21 PointerToRawData uint32
22 PointerToRelocations uint32
23 PointerToLineNumbers uint32
24 NumberOfRelocations uint16
25 NumberOfLineNumbers uint16
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
H A DXCOFF.h224 struct SectionHeader32 { struct
225 char Name[XCOFF::NameSize];
226 uint32_t PhysicalAddress;
227 uint32_t VirtualAddress;
228 uint32_t Size;
229 uint32_t FileOffsetToData;
230 uint32_t FileOffsetToRelocations;
231 uint32_t FileOffsetToLineNumbers;
232 uint16_t NumberOfRelocations;
233 uint16_t NumberOfLineNumbers;
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/internal/xcoff/
Dxcoff.go52 type SectionHeader32 struct { struct
53 Sname [8]byte // Section name
54 Spaddr uint32 // Physical address
55 Svaddr uint32 // Virtual address
56 Ssize uint32 // Section size
57 Sscnptr uint32 // Offset in file to raw data for section
58 Srelptr uint32 // Offset in file to relocation entries for section
59 Slnnoptr uint32 // Offset in file to line number entries for section
60 Snreloc uint16 // Number of relocation entries
61 Snlnno uint16 // Number of line number entries
[all …]