Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DT_HASH (0.34 sec)

  1. src/runtime/vdso_linux.go

    			return false
    		}
    
    		*k.ptr = info.loadOffset + uintptr(sym.st_value)
    		return true
    	}
    
    	if !info.isGNUHash {
    		// Old-style DT_HASH table.
    		for _, k := range vdsoSymbolKeys {
    			if len(info.bucket) > 0 {
    				for chain := info.bucket[k.symHash%uint32(len(info.bucket))]; chain != 0; chain = info.chain[chain] {
    					if apply(chain, k) {
    						break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	DT_NEEDED       DynTag = 1  /* String table offset of a needed shared library. */
    	DT_PLTRELSZ     DynTag = 2  /* Total size in bytes of PLT relocations. */
    	DT_PLTGOT       DynTag = 3  /* Processor-dependent address. */
    	DT_HASH         DynTag = 4  /* Address of symbol hash table. */
    	DT_STRTAB       DynTag = 5  /* Address of string table. */
    	DT_SYMTAB       DynTag = 6  /* Address of symbol table. */
    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/link/internal/ld/elf.go

    			gotplt = got
    		}
    		thearch.ELF.SetupPLT(ctxt, ctxt.loader, plt, gotplt, dynamic.Sym())
    
    		/*
    		 * .dynamic table
    		 */
    		elfWriteDynEntSym(ctxt, dynamic, elf.DT_HASH, hash.Sym())
    
    		elfWriteDynEntSym(ctxt, dynamic, elf.DT_SYMTAB, dynsym.Sym())
    		if elf64 {
    			Elfwritedynent(ctxt.Arch, dynamic, elf.DT_SYMENT, ELF64SYMSIZE)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"DT_GNU_CONFLICT", Const, 16},
    		{"DT_GNU_CONFLICTSZ", Const, 16},
    		{"DT_GNU_HASH", Const, 16},
    		{"DT_GNU_LIBLIST", Const, 16},
    		{"DT_GNU_LIBLISTSZ", Const, 16},
    		{"DT_GNU_PRELINKED", Const, 16},
    		{"DT_HASH", Const, 0},
    		{"DT_HIOS", Const, 0},
    		{"DT_HIPROC", Const, 0},
    		{"DT_INIT", Const, 0},
    		{"DT_INIT_ARRAY", Const, 0},
    		{"DT_INIT_ARRAYSZ", Const, 0},
    		{"DT_JMPREL", 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)
  5. api/go1.txt

    pkg debug/elf, const DT_FINI DynTag
    pkg debug/elf, const DT_FINI_ARRAY DynTag
    pkg debug/elf, const DT_FINI_ARRAYSZ DynTag
    pkg debug/elf, const DT_FLAGS DynTag
    pkg debug/elf, const DT_HASH DynTag
    pkg debug/elf, const DT_HIOS DynTag
    pkg debug/elf, const DT_HIPROC DynTag
    pkg debug/elf, const DT_INIT DynTag
    pkg debug/elf, const DT_INIT_ARRAY DynTag
    pkg debug/elf, const DT_INIT_ARRAYSZ DynTag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg debug/elf, const DT_ENCODING = 32
    pkg debug/elf, const DT_FINI = 13
    pkg debug/elf, const DT_FINI_ARRAY = 26
    pkg debug/elf, const DT_FINI_ARRAYSZ = 28
    pkg debug/elf, const DT_FLAGS = 30
    pkg debug/elf, const DT_HASH = 4
    pkg debug/elf, const DT_HIOS = 1879044096
    pkg debug/elf, const DT_HIPROC = 2147483647
    pkg debug/elf, const DT_INIT = 12
    pkg debug/elf, const DT_INIT_ARRAY = 25
    pkg debug/elf, const DT_INIT_ARRAYSZ = 27
    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