Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for _ELF_ST_BIND (0.08 sec)

  1. src/runtime/vdso_linux.go

    	// but contain uintptrs
    	vdsoBloomSizeScale = unsafe.Sizeof(uintptr(0)) / 4 // uint32
    )
    
    /* How to extract and insert information held in the st_info field.  */
    func _ELF_ST_BIND(val byte) byte { return val >> 4 }
    func _ELF_ST_TYPE(val byte) byte { return val & 0xf }
    
    type vdsoSymbolKey struct {
    	name    string
    	symHash uint32
    	gnuHash uint32
    	ptr     *uintptr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
Back to top