Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for elf64phdr (0.07 sec)

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

    	if elf64 {
    		for i := 0; i < int(ehdr.Phnum); i++ {
    			elf64phdr(out, phdr[i])
    		}
    		return uint32(ehdr.Phnum) * ELF64PHDRSIZE
    	}
    
    	for i := 0; i < int(ehdr.Phnum); i++ {
    		elf32phdr(out, phdr[i])
    	}
    	return uint32(ehdr.Phnum) * ELF32PHDRSIZE
    }
    
    func newElfPhdr() *ElfPhdr {
    	e := new(ElfPhdr)
    	if ehdr.Phnum >= NSECT {
    		Errorf(nil, "too many phdrs")
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top