Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SHN_LORESERVE (0.16 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)
Back to top