Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for v4Addr (0.18 sec)

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

    	ctxt.xdefine("runtime.noptrdata", sym.SNOPTRDATA, int64(noptr.Vaddr))
    	ctxt.xdefine("runtime.enoptrdata", sym.SNOPTRDATA, int64(noptr.Vaddr+noptr.Length))
    	ctxt.xdefine("runtime.bss", sym.SBSS, int64(bss.Vaddr))
    	ctxt.xdefine("runtime.ebss", sym.SBSS, int64(bss.Vaddr+bss.Length))
    	ctxt.xdefine("runtime.data", sym.SDATA, int64(data.Vaddr))
    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/internal/obj/x86/asm6.go

    				ab.Put1(byte(vaddr(ctxt, p, &p.To, nil)))
    
    			case Zibo_m:
    				ab.Put1(byte(op))
    				ab.asmando(ctxt, cursym, p, &p.To, int(o.op[z+1]))
    				ab.Put1(byte(vaddr(ctxt, p, &p.From, nil)))
    
    			case Zibo_m_xm:
    				z = ab.mediaop(ctxt, o, op, int(yt.zoffset), z)
    				ab.asmando(ctxt, cursym, p, &p.To, int(o.op[z+1]))
    				ab.Put1(byte(vaddr(ctxt, p, &p.From, nil)))
    
    			case Z_ib, Zib_:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    	Entsize   uint32 /* Size of each entry in section. */
    }
    
    // ELF32 Program header.
    type Prog32 struct {
    	Type   uint32 /* Entry type. */
    	Off    uint32 /* File offset of contents. */
    	Vaddr  uint32 /* Virtual address in memory image. */
    	Paddr  uint32 /* Physical address (not used). */
    	Filesz uint32 /* Size of contents in file. */
    	Memsz  uint32 /* Size of contents in memory. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top