Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PointerToRelocations (0.35 sec)

  1. 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)
  2. 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)
Back to top