Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Nextrefsyms (0.11 sec)

  1. src/cmd/link/internal/loadmacho/ldmacho.go

    	nextdefsym     uint32
    	iundefsym      uint32
    	nundefsym      uint32
    	tocoff         uint32
    	ntoc           uint32
    	modtaboff      uint32
    	nmodtab        uint32
    	extrefsymoff   uint32
    	nextrefsyms    uint32
    	indirectsymoff uint32
    	nindirectsyms  uint32
    	extreloff      uint32
    	nextrel        uint32
    	locreloff      uint32
    	nlocrel        uint32
    	indir          []uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho.go

    	ml.data[6] = 0  /* tocoffset */
    	ml.data[7] = 0  /* ntoc */
    	ml.data[8] = 0  /* modtaboff */
    	ml.data[9] = 0  /* nmodtab */
    	ml.data[10] = 0 /* extrefsymoff */
    	ml.data[11] = 0 /* nextrefsyms */
    
    	ldr := ctxt.loader
    
    	// must match domacholink below
    	s1 := ldr.SymSize(ldr.Lookup(".machosymtab", 0))
    	s2 := ldr.SymSize(ctxt.ArchSyms.LinkEditPLT)
    	s3 := ldr.SymSize(ctxt.ArchSyms.LinkEditGOT)
    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