Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for chku64 (0.36 sec)

  1. src/debug/elf/file.go

    				s.Size = uint64(bo.Uint32(chdata[unsafe.Offsetof(ch.Size):]))
    				s.Addralign = uint64(bo.Uint32(chdata[unsafe.Offsetof(ch.Addralign):]))
    				s.compressionOffset = int64(unsafe.Sizeof(ch))
    			case ELFCLASS64:
    				var ch Chdr64
    				chdata := make([]byte, unsafe.Sizeof(ch))
    				if _, err := s.sr.ReadAt(chdata, 0); err != nil {
    					return nil, err
    				}
    				s.compressionType = CompressionType(bo.Uint32(chdata[unsafe.Offsetof(ch.Type):]))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"COMPRESS_ZSTD", Const, 21},
    		{"Chdr32", Type, 6},
    		{"Chdr32.Addralign", Field, 6},
    		{"Chdr32.Size", Field, 6},
    		{"Chdr32.Type", Field, 6},
    		{"Chdr64", Type, 6},
    		{"Chdr64.Addralign", Field, 6},
    		{"Chdr64.Size", Field, 6},
    		{"Chdr64.Type", Field, 6},
    		{"Class", Type, 0},
    		{"CompressionType", Type, 6},
    		{"DF_1_CONFALT", Const, 21},
    		{"DF_1_DIRECT", Const, 21},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  4. 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