Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Nindirectsyms (0.31 sec)

  1. src/debug/macho/file.go

    			}
    			dat, err := saferio.ReadDataAt(r, uint64(hdr.Nindirectsyms)*4, int64(hdr.Indirectsymoff))
    			if err != nil {
    				return nil, err
    			}
    			x := make([]uint32, hdr.Nindirectsyms)
    			if err := binary.Read(bytes.NewReader(dat), bo, x); err != nil {
    				return nil, err
    			}
    			st := new(Dysymtab)
    			st.LoadBytes = LoadBytes(cmddat)
    			st.DysymtabCmd = hdr
    			st.IndirectSyms = x
    			f.Loads = append(f.Loads, st)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho.go

    	s2 := ldr.SymSize(ctxt.ArchSyms.LinkEditPLT)
    	s3 := ldr.SymSize(ctxt.ArchSyms.LinkEditGOT)
    	ml.data[12] = uint32(base + s1)     /* indirectsymoff */
    	ml.data[13] = uint32((s2 + s3) / 4) /* nindirectsyms */
    
    	ml.data[14] = 0 /* extreloff */
    	ml.data[15] = 0 /* nextrel */
    	ml.data[16] = 0 /* locreloff */
    	ml.data[17] = 0 /* nlocrel */
    }
    
    func doMachoLink(ctxt *Link) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"DysymtabCmd.Locreloff", Field, 0},
    		{"DysymtabCmd.Modtaboff", Field, 0},
    		{"DysymtabCmd.Nextdefsym", Field, 0},
    		{"DysymtabCmd.Nextrefsyms", Field, 0},
    		{"DysymtabCmd.Nextrel", Field, 0},
    		{"DysymtabCmd.Nindirectsyms", Field, 0},
    		{"DysymtabCmd.Nlocalsym", Field, 0},
    		{"DysymtabCmd.Nlocrel", Field, 0},
    		{"DysymtabCmd.Nmodtab", Field, 0},
    		{"DysymtabCmd.Ntoc", Field, 0},
    		{"DysymtabCmd.Nundefsym", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top