Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for chku64 (0.07 sec)

  1. src/debug/elf/elf.go

    // ELF64 Dynamic structure. The ".dynamic" section contains an array of them.
    type Dyn64 struct {
    	Tag int64  /* Entry type. */
    	Val uint64 /* Integer/address value */
    }
    
    // ELF64 Compression header.
    type Chdr64 struct {
    	Type      uint32
    	_         uint32 /* Reserved. */
    	Size      uint64
    	Addralign uint64
    }
    
    /*
     * Relocation entries.
     */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	for _, sym := range syms {
    		total += ldr.SymSize(sym)
    	}
    
    	var buf bytes.Buffer
    	if ctxt.IsELF {
    		switch ctxt.Arch.PtrSize {
    		case 8:
    			binary.Write(&buf, ctxt.Arch.ByteOrder, elf.Chdr64{
    				Type:      uint32(elf.COMPRESS_ZLIB),
    				Size:      uint64(total),
    				Addralign: uint64(ctxt.Arch.Alignment),
    			})
    		case 4:
    			binary.Write(&buf, ctxt.Arch.ByteOrder, elf.Chdr32{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
Back to top