Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for SectionType (0.25 sec)

  1. src/debug/elf/elf.go

    	SHT_DYNAMIC        SectionType = 6          /* dynamic section */
    	SHT_NOTE           SectionType = 7          /* note section */
    	SHT_NOBITS         SectionType = 8          /* no space section */
    	SHT_REL            SectionType = 9          /* relocation section - no addends */
    	SHT_SHLIB          SectionType = 10         /* reserved - purpose unknown */
    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/debug/elf/file.go

    			if err := binary.Read(sr, bo, sh); err != nil {
    				return nil, err
    			}
    			shnum = int(sh.Size)
    			typ = sh.Type
    			link = sh.Link
    		}
    		if SectionType(typ) != SHT_NULL {
    			return nil, &FormatError{shoff, "invalid type of the initial section", SectionType(typ)}
    		}
    
    		if shnum < int(SHN_LORESERVE) {
    			return nil, &FormatError{shoff, "invalid ELF shnum contained in sh_size", shnum}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loadelf/ldelf.go

    THE SOFTWARE.
    */
    
    const (
    	SHT_ARM_ATTRIBUTES = 0x70000003
    )
    
    type ElfSect struct {
    	name        string
    	nameoff     uint32
    	type_       elf.SectionType
    	flags       elf.SectionFlag
    	addr        uint64
    	off         uint64
    	size        uint64
    	link        uint32
    	info        uint32
    	align       uint64
    	entsize     uint64
    	base        []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:12:12 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/wasm/asm.go

    	"encoding/binary"
    	"fmt"
    	"internal/abi"
    	"internal/buildcfg"
    	"io"
    	"regexp"
    )
    
    const (
    	I32 = 0x7F
    	I64 = 0x7E
    	F32 = 0x7D
    	F64 = 0x7C
    )
    
    const (
    	sectionCustom   = 0
    	sectionType     = 1
    	sectionImport   = 2
    	sectionFunction = 3
    	sectionTable    = 4
    	sectionMemory   = 5
    	sectionGlobal   = 6
    	sectionExport   = 7
    	sectionStart    = 8
    	sectionElement  = 9
    	sectionCode     = 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. api/go1.17.txt

    pkg database/sql, type NullInt16 struct, Int16 int16
    pkg database/sql, type NullInt16 struct, Valid bool
    pkg debug/elf, const SHT_MIPS_ABIFLAGS = 1879048234
    pkg debug/elf, const SHT_MIPS_ABIFLAGS SectionType
    pkg encoding/csv, method (*Reader) FieldPos(int) (int, int)
    pkg go/build, type Context struct, ToolTags []string
    pkg go/parser, const SkipObjectResolution = 64
    pkg go/parser, const SkipObjectResolution Mode
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  6. api/go1.txt

    pkg debug/elf, const SHT_HASH SectionType
    pkg debug/elf, const SHT_HIOS SectionType
    pkg debug/elf, const SHT_HIPROC SectionType
    pkg debug/elf, const SHT_HIUSER SectionType
    pkg debug/elf, const SHT_INIT_ARRAY SectionType
    pkg debug/elf, const SHT_LOOS SectionType
    pkg debug/elf, const SHT_LOPROC SectionType
    pkg debug/elf, const SHT_LOUSER SectionType
    pkg debug/elf, const SHT_NOBITS SectionType
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(SectionFlag).GoString", Method, 0},
    		{"(SectionFlag).String", Method, 0},
    		{"(SectionIndex).GoString", Method, 0},
    		{"(SectionIndex).String", Method, 0},
    		{"(SectionType).GoString", Method, 0},
    		{"(SectionType).String", Method, 0},
    		{"(SymBind).GoString", Method, 0},
    		{"(SymBind).String", Method, 0},
    		{"(SymType).GoString", Method, 0},
    		{"(SymType).String", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top