Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for NumberOfRelocations (0.43 sec)

  1. src/debug/pe/section.go

    }
    
    func readRelocs(sh *SectionHeader, r io.ReadSeeker) ([]Reloc, error) {
    	if sh.NumberOfRelocations <= 0 {
    		return nil, nil
    	}
    	_, err := r.Seek(int64(sh.PointerToRelocations), io.SeekStart)
    	if err != nil {
    		return nil, fmt.Errorf("fail to seek to %q section relocations: %v", sh.Name, err)
    	}
    	relocs := make([]Reloc, sh.NumberOfRelocations)
    	err = binary.Read(r, binary.LittleEndian, relocs)
    	if err != nil {
    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/debug/pe/file.go

    			Size:                 sh.SizeOfRawData,
    			Offset:               sh.PointerToRawData,
    			PointerToRelocations: sh.PointerToRelocations,
    			PointerToLineNumbers: sh.PointerToLineNumbers,
    			NumberOfRelocations:  sh.NumberOfRelocations,
    			NumberOfLineNumbers:  sh.NumberOfLineNumbers,
    			Characteristics:      sh.Characteristics,
    		}
    		r2 := r
    		if sh.PointerToRawData == 0 { // .bss must have all 0s
    			r2 = &nobitsSectionReader{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pe.go

    		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
    	}
    	copy(h.Name[:], sect.shortName)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadpe/ldpe.go

    		return nil, err
    	}
    
    	// load relocations
    	for _, rsect := range f.Sections {
    		if _, found := state.sectsyms[rsect]; !found {
    			continue
    		}
    		if rsect.NumberOfRelocations == 0 {
    			continue
    		}
    		if rsect.Characteristics&pe.IMAGE_SCN_MEM_DISCARDABLE != 0 {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SectionHeader", Type, 0},
    		{"SectionHeader.Characteristics", Field, 0},
    		{"SectionHeader.Name", Field, 0},
    		{"SectionHeader.NumberOfLineNumbers", Field, 0},
    		{"SectionHeader.NumberOfRelocations", Field, 0},
    		{"SectionHeader.Offset", Field, 0},
    		{"SectionHeader.PointerToLineNumbers", Field, 0},
    		{"SectionHeader.PointerToRelocations", Field, 0},
    		{"SectionHeader.Size", Field, 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)
  6. api/go1.txt

    pkg debug/pe, type SectionHeader struct, Name string
    pkg debug/pe, type SectionHeader struct, NumberOfLineNumbers uint16
    pkg debug/pe, type SectionHeader struct, NumberOfRelocations uint16
    pkg debug/pe, type SectionHeader struct, Offset uint32
    pkg debug/pe, type SectionHeader struct, PointerToLineNumbers uint32
    pkg debug/pe, type SectionHeader struct, PointerToRelocations 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