Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetSymDynid (0.21 sec)

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

    	})
    	for i, s := range sortsym {
    		ldr.SetSymDynid(s, int32(i))
    	}
    }
    
    // AddMachoSym adds s to Mach-O symbol table, used in GenSymLate.
    // Currently only used on ARM64 when external linking.
    func AddMachoSym(ldr *loader.Loader, s loader.Sym) {
    	ldr.SetSymDynid(s, int32(nsortsym))
    	sortsym = append(sortsym, s)
    	nsortsym++
    	nkind[symkind(ldr, s)]++
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    	} else {
    		out.WriteStringN(name, 8)
    	}
    	out.Write32(uint32(value))
    	out.Write16(uint16(sectidx))
    	out.Write16(typ)
    	out.Write8(class)
    	out.Write8(0) // no aux entries
    
    	ldr.SetSymDynid(s, int32(f.symbolCount))
    
    	f.symbolCount++
    }
    
    // mapToPESection searches peFile f for s symbol's location.
    // It returns PE section index, and offset within that section.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
Back to top