Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SHT_MIPS_ABIFLAGS (0.7 sec)

  1. api/go1.17.txt

    pkg database/sql, type NullInt16 struct
    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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    )
    
    func elfMipsAbiFlags(sh *ElfShdr, startva uint64, resoff uint64) int {
    	n := 24
    	sh.Addr = startva + resoff - uint64(n)
    	sh.Off = resoff - uint64(n)
    	sh.Size = uint64(n)
    	sh.Type = uint32(elf.SHT_MIPS_ABIFLAGS)
    	sh.Flags = uint64(elf.SHF_ALLOC)
    
    	return n
    }
    
    // Layout is given by this C definition:
    //
    //	typedef struct
    //	{
    //	  /* Version of flags structure.  */
    //	  uint16_t version;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/debug/elf/elf.go

    	SHT_HIOS           SectionType = 0x6fffffff /* Last of OS specific semantics */
    	SHT_LOPROC         SectionType = 0x70000000 /* reserved range for processor */
    	SHT_MIPS_ABIFLAGS  SectionType = 0x7000002a /* .MIPS.abiflags */
    	SHT_HIPROC         SectionType = 0x7fffffff /* specific section header types */
    	SHT_LOUSER         SectionType = 0x80000000 /* reserved range for application */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SHT_HIPROC", Const, 0},
    		{"SHT_HIUSER", Const, 0},
    		{"SHT_INIT_ARRAY", Const, 0},
    		{"SHT_LOOS", Const, 0},
    		{"SHT_LOPROC", Const, 0},
    		{"SHT_LOUSER", Const, 0},
    		{"SHT_MIPS_ABIFLAGS", Const, 17},
    		{"SHT_NOBITS", Const, 0},
    		{"SHT_NOTE", Const, 0},
    		{"SHT_NULL", Const, 0},
    		{"SHT_PREINIT_ARRAY", Const, 0},
    		{"SHT_PROGBITS", Const, 0},
    		{"SHT_REL", 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