Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Phentsize (0.23 sec)

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

    		if elf.Machine(eh.Machine) == elf.EM_X86_64 {
    			sh.Entsize = 16
    		} else if elf.Machine(eh.Machine) == elf.EM_S390 {
    			sh.Entsize = 32
    		} else if elf.Machine(eh.Machine) == elf.EM_PPC64 {
    			// On ppc64, this is just a table of addresses
    			// filled by the dynamic linker
    			sh.Type = uint32(elf.SHT_NOBITS)
    
    			sh.Flags = uint64(elf.SHF_ALLOC + elf.SHF_WRITE)
    			sh.Entsize = 8
    		} else {
    			sh.Entsize = 4
    		}
    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

    			Link:      0xFF10,
    			Info:      0x02,
    			Addralign: 0x04,
    			Entsize:   0x10,
    		})
    		// .symtab_shndx
    		binary.Write(&buf, binary.LittleEndian, Section32{
    			Name:      0x0CF3AD,
    			Type:      uint32(SHT_SYMTAB_SHNDX),
    			Off:       0x13ED1C,
    			Size:      0x03FC28,
    			Link:      0xFF0E,
    			Addralign: 0x04,
    			Entsize:   0x04,
    		})
    		// .strtab
    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