Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getMachoHdr (0.36 sec)

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

    // "big enough" header size. The initial header is
    // one page, the non-dynamic library stuff takes
    // up about 1300 bytes; we overestimate that as 2k.
    var loadBudget = INITIAL_MACHO_HEADR - 2*1024
    
    func getMachoHdr() *MachoHdr {
    	return &machohdr
    }
    
    func newMachoLoad(arch *sys.Arch, type_ uint32, ndata uint32) *MachoLoad {
    	if arch.PtrSize == 8 && (ndata&1 != 0) {
    		ndata++
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top