Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for Segdata (0.12 sec)

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

    	Segdata.Filelen = bss.Vaddr - Segdata.Vaddr
    
    	if len(Segpdata.Sections) > 0 {
    		va = uint64(Rnd(int64(va), *FlagRound))
    		order = append(order, &Segpdata)
    		Segpdata.Rwx = 04
    		Segpdata.Vaddr = va
    		// Segpdata.Sections is intended to contain just one section.
    		// Loop through the slice anyway for consistency.
    		for _, s := range Segpdata.Sections {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  2. src/cmd/link/internal/ld/macho.go

    	}
    
    	/* data */
    	if ctxt.LinkMode != LinkExternal {
    		ms = newMachoSeg("__DATA", 20)
    		ms.vaddr = Segdata.Vaddr
    		ms.vsize = Segdata.Length
    		ms.fileoffset = Segdata.Fileoff
    		ms.filesize = Segdata.Filelen
    		ms.prot1 = 3
    		ms.prot2 = 3
    	}
    
    	for _, sect := range Segdata.Sections {
    		machoshbits(ctxt, ms, sect, "__DATA")
    	}
    
    	/* dwarf */
    	if !*FlagW {
    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/link/internal/ld/elf.go

    	}
    
    	for _, sect := range Segrodata.Sections {
    		relocSect(ctxt, sect, ctxt.datap)
    	}
    	for _, sect := range Segrelrodata.Sections {
    		relocSect(ctxt, sect, ctxt.datap)
    	}
    	for _, sect := range Segdata.Sections {
    		relocSect(ctxt, sect, ctxt.datap)
    	}
    	for i := 0; i < len(Segdwarf.Sections); i++ {
    		sect := Segdwarf.Sections[i]
    		si := dwarfp[i]
    		if si.secSym() != loader.Sym(sect.Sym) ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    )
    
    var (
    	Segtext      sym.Segment
    	Segrodata    sym.Segment
    	Segrelrodata sym.Segment
    	Segdata      sym.Segment
    	Segdwarf     sym.Segment
    	Segpdata     sym.Segment // windows-only
    	Segxdata     sym.Segment // windows-only
    
    	Segments = []*sym.Segment{&Segtext, &Segrodata, &Segrelrodata, &Segdata, &Segdwarf, &Segpdata, &Segxdata}
    )
    
    const pkgdef = "__.PKGDEF"
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ppc64/asm.go

    		}
    		relocs := ldr.Relocs(rs)
    		tarSym := relocs.At(0).Sym()
    
    		if target.IsInternal() && tarSym != 0 && ldr.AttrReachable(tarSym) && ldr.SymSect(tarSym).Seg == &ld.Segdata {
    			t = ldr.SymValue(tarSym) + r.Add() - ldr.SymValue(syms.TOC)
    			// change ld to addi in the second instruction
    			o2 = (o2 & 0x03FF0000) | 0xE<<26
    			useAddi = true
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

        const togglePlot = function (chartId, label) {
            const plot = plots[chartId];
            const plotData = plot.getData();
            $.each(plotData, function (index, value) {
                if (value.label == label) {
                    value.points.show = value.lines.show = !value.lines.show;
                }
            });
            plot.setData(plotData);
            plot.draw();
        };
    
        function renderGraphs(allDataJson, charts) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/checkpoint/checkpoint.go

    func (cp *Data) VerifyChecksum() error {
    	return cp.Checksum.Verify(cp.Data)
    }
    
    // GetData returns device entries and registered devices in the *most recent*
    // checkpoint format, *not* in the original format stored on disk.
    func (cp *Data) GetData() ([]PodDevicesEntry, map[string][]string) {
    	return cp.Data.PodDeviceEntries, cp.Data.RegisteredDevices
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/ExecutionGraph.java

        public ExecutionGraph(int index, Line... lines) {
            this.index = index;
            this.title = "Execution " + index + " (ms)";
            this.data = Arrays.asList(lines);
        }
    
        String getData() {
            return JsonOutput.toJson(data);
        }
    
        String getTicks() {
            List<List<Object>> ticks = IntStream.range(0, data.get(0).data.size())
                .mapToObj(index -> Arrays.<Object>asList(index, index))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/InternalSession.java

        static InternalSession from(org.eclipse.aether.RepositorySystemSession session) {
            return cast(InternalSession.class, session.getData().get(InternalSession.class), "session");
        }
    
        static void associate(org.eclipse.aether.RepositorySystemSession rsession, Session session) {
            if (!rsession.getData().set(InternalSession.class, null, from(session))) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 12:55:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java

            RepositorySystemSession systemSessionMock = Mockito.mock(RepositorySystemSession.class);
            SessionData sessionDataMock = Mockito.mock(SessionData.class);
            when(systemSessionMock.getData()).thenReturn(sessionDataMock);
            when(sessionDataMock.get(any())).thenReturn(new NoTransformerContext());
    
            Path beforePomFile =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top