Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Shoff (0.09 sec)

  1. src/cmd/link/internal/ld/elf.go

    		}
    		if ctxt.Arch.Family == sys.RISCV64 {
    			ehdr.Flags = 0x4 /* RISCV Float ABI Double */
    		}
    		elf64 = true
    
    		ehdr.Phoff = ELF64HDRSIZE      /* Must be ELF64HDRSIZE: first PHdr must follow ELF header */
    		ehdr.Shoff = ELF64HDRSIZE      /* Will move as we add PHeaders */
    		ehdr.Ehsize = ELF64HDRSIZE     /* Must be ELF64HDRSIZE */
    		ehdr.Phentsize = ELF64PHDRSIZE /* Must be ELF64PHDRSIZE */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    	{
    		buf.Grow(0x55AF1C) // 3003468 + 40 * 65298
    
    		h := Header32{
    			Ident:     [16]byte{0x7F, 'E', 'L', 'F', 0x01, 0x01, 0x01},
    			Type:      1,
    			Machine:   3,
    			Version:   1,
    			Shoff:     0x2DD44C,
    			Ehsize:    0x34,
    			Shentsize: 0x28,
    			Shnum:     0,
    			Shstrndx:  0xFFFF,
    		}
    		binary.Write(&buf, binary.LittleEndian, h)
    
    		// Zero out sections [1]~[65294].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top