Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for VirtualSize (0.12 sec)

  1. src/debug/pe/file.go

    	sectionData := func(s *Section) ([]byte, error) {
    		b, err := s.Data()
    		if err != nil && uint32(len(b)) < s.Size {
    			return nil, err
    		}
    
    		if 0 < s.VirtualSize && s.VirtualSize < s.Size {
    			b = b[:s.VirtualSize]
    		}
    
    		if len(b) >= 12 && string(b[:4]) == "ZLIB" {
    			dlen := binary.BigEndian.Uint64(b[4:12])
    			dbuf := make([]byte, dlen)
    			r, err := zlib.NewReader(bytes.NewBuffer(b[12:]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    }
    
    // write writes COFF section sect into the output file.
    func (sect *peSection) write(out *OutBuf, linkmode LinkMode) error {
    	h := pe.SectionHeader32{
    		VirtualSize:          sect.virtualSize,
    		SizeOfRawData:        sect.sizeOfRawData,
    		PointerToRawData:     sect.pointerToRawData,
    		PointerToRelocations: sect.pointerToRelocations,
    		NumberOfRelocations:  sect.numberOfRelocations,
    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/buildinfo/buildinfo.go

    			sect.Characteristics&^IMAGE_SCN_ALIGN_32BYTES == IMAGE_SCN_CNT_INITIALIZED_DATA|IMAGE_SCN_MEM_READ|IMAGE_SCN_MEM_WRITE {
    			return uint64(sect.VirtualAddress) + x.imageBase(), uint64(sect.VirtualSize)
    		}
    	}
    	return 0, 0
    }
    
    // machoExe is the Mach-O (Apple macOS/iOS) implementation of the exe interface.
    type machoExe struct {
    	f *macho.File
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top