Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Shndx (0.46 sec)

  1. src/debug/elf/elf.go

    func R_INFO32(sym, typ uint32) uint32 { return sym<<8 | typ }
    
    // ELF32 Symbol.
    type Sym32 struct {
    	Name  uint32
    	Value uint32
    	Size  uint32
    	Info  uint8
    	Other uint8
    	Shndx uint16
    }
    
    const Sym32Size = 16
    
    func ST_BIND(info uint8) SymBind { return SymBind(info >> 4) }
    func ST_TYPE(info uint8) SymType { return SymType(info & 0xF) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top