Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for PointerToRelocations (0.29 sec)

  1. src/debug/pe/section.go

    type SectionHeader32 struct {
    	Name                 [8]uint8
    	VirtualSize          uint32
    	VirtualAddress       uint32
    	SizeOfRawData        uint32
    	PointerToRawData     uint32
    	PointerToRelocations uint32
    	PointerToLineNumbers uint32
    	NumberOfRelocations  uint16
    	NumberOfLineNumbers  uint16
    	Characteristics      uint32
    }
    
    // fullName finds real name of section sh. Normally name is stored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    	h := pe.SectionHeader32{
    		VirtualSize:          sect.virtualSize,
    		SizeOfRawData:        sect.sizeOfRawData,
    		PointerToRawData:     sect.pointerToRawData,
    		PointerToRelocations: sect.pointerToRelocations,
    		NumberOfRelocations:  sect.numberOfRelocations,
    		Characteristics:      sect.characteristics,
    	}
    	if linkmode != LinkExternal {
    		h.VirtualAddress = sect.virtualAddress
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  3. src/debug/pe/file.go

    			VirtualSize:          sh.VirtualSize,
    			VirtualAddress:       sh.VirtualAddress,
    			Size:                 sh.SizeOfRawData,
    			Offset:               sh.PointerToRawData,
    			PointerToRelocations: sh.PointerToRelocations,
    			PointerToLineNumbers: sh.PointerToLineNumbers,
    			NumberOfRelocations:  sh.NumberOfRelocations,
    			NumberOfLineNumbers:  sh.NumberOfLineNumbers,
    			Characteristics:      sh.Characteristics,
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SectionHeader.NumberOfLineNumbers", Field, 0},
    		{"SectionHeader.NumberOfRelocations", Field, 0},
    		{"SectionHeader.Offset", Field, 0},
    		{"SectionHeader.PointerToLineNumbers", Field, 0},
    		{"SectionHeader.PointerToRelocations", Field, 0},
    		{"SectionHeader.Size", Field, 0},
    		{"SectionHeader.VirtualAddress", Field, 0},
    		{"SectionHeader.VirtualSize", Field, 0},
    		{"SectionHeader32", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg debug/pe, type SectionHeader struct, Offset uint32
    pkg debug/pe, type SectionHeader struct, PointerToLineNumbers uint32
    pkg debug/pe, type SectionHeader struct, PointerToRelocations uint32
    pkg debug/pe, type SectionHeader struct, Size uint32
    pkg debug/pe, type SectionHeader struct, VirtualAddress uint32
    pkg debug/pe, type SectionHeader struct, VirtualSize uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top