Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SHN_LORESERVE (0.32 sec)

  1. src/debug/elf/file.go

    			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}
    		}
    
    		// If the section name string table section index is greater than or
    		// equal to SHN_LORESERVE (0xff00), this member has the value
    		// SHN_XINDEX (0xffff) and the actual index of the section name
    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

    // Special section indices.
    type SectionIndex int
    
    const (
    	SHN_UNDEF     SectionIndex = 0      /* Undefined, missing, irrelevant. */
    	SHN_LORESERVE SectionIndex = 0xff00 /* First of reserved range. */
    	SHN_LOPROC    SectionIndex = 0xff00 /* First processor-specific. */
    	SHN_HIPROC    SectionIndex = 0xff1f /* Last processor-specific. */
    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

    		{"SHN_ABS", Const, 0},
    		{"SHN_COMMON", Const, 0},
    		{"SHN_HIOS", Const, 0},
    		{"SHN_HIPROC", Const, 0},
    		{"SHN_HIRESERVE", Const, 0},
    		{"SHN_LOOS", Const, 0},
    		{"SHN_LOPROC", Const, 0},
    		{"SHN_LORESERVE", Const, 0},
    		{"SHN_UNDEF", Const, 0},
    		{"SHN_XINDEX", Const, 0},
    		{"SHT_DYNAMIC", Const, 0},
    		{"SHT_DYNSYM", Const, 0},
    		{"SHT_FINI_ARRAY", Const, 0},
    		{"SHT_GNU_ATTRIBUTES", Const, 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)
  4. api/go1.txt

    pkg debug/elf, const SHN_HIPROC SectionIndex
    pkg debug/elf, const SHN_HIRESERVE SectionIndex
    pkg debug/elf, const SHN_LOOS SectionIndex
    pkg debug/elf, const SHN_LOPROC SectionIndex
    pkg debug/elf, const SHN_LORESERVE SectionIndex
    pkg debug/elf, const SHN_UNDEF SectionIndex
    pkg debug/elf, const SHN_XINDEX SectionIndex
    pkg debug/elf, const SHT_DYNAMIC SectionType
    pkg debug/elf, const SHT_DYNSYM 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)
  5. api/go1.1.txt

    pkg debug/elf, const SHN_HIOS = 65343
    pkg debug/elf, const SHN_HIPROC = 65311
    pkg debug/elf, const SHN_HIRESERVE = 65535
    pkg debug/elf, const SHN_LOOS = 65312
    pkg debug/elf, const SHN_LOPROC = 65280
    pkg debug/elf, const SHN_LORESERVE = 65280
    pkg debug/elf, const SHN_UNDEF = 0
    pkg debug/elf, const SHN_XINDEX = 65535
    pkg debug/elf, const SHT_DYNAMIC = 6
    pkg debug/elf, const SHT_DYNSYM = 11
    pkg debug/elf, const SHT_FINI_ARRAY = 15
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top