Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for vd_ndx (0.32 sec)

  1. src/runtime/vdso_elf32.go

    }
    
    type elfVerdef struct {
    	vd_version uint16 /* Version revision */
    	vd_flags   uint16 /* Version information */
    	vd_ndx     uint16 /* Version Index */
    	vd_cnt     uint16 /* Number of associated aux entries */
    	vd_hash    uint32 /* Version name hash value */
    	vd_aux     uint32 /* Offset in bytes to verdaux array */
    	vd_next    uint32 /* Offset in bytes to next verdef entry */
    }
    
    type elfEhdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. src/runtime/vdso_elf64.go

    }
    
    type elfVerdef struct {
    	vd_version uint16 /* Version revision */
    	vd_flags   uint16 /* Version information */
    	vd_ndx     uint16 /* Version Index */
    	vd_cnt     uint16 /* Number of associated aux entries */
    	vd_hash    uint32 /* Version name hash value */
    	vd_aux     uint32 /* Offset in bytes to verdaux array */
    	vd_next    uint32 /* Offset in bytes to next verdef entry */
    }
    
    type elfEhdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. src/runtime/vdso_linux.go

    			aux := (*elfVerdaux)(add(unsafe.Pointer(def), uintptr(def.vd_aux)))
    			if def.vd_hash == ver.verHash && ver.version == gostringnocopy(&info.symstrings[aux.vda_name]) {
    				return int32(def.vd_ndx & 0x7fff)
    			}
    		}
    
    		if def.vd_next == 0 {
    			break
    		}
    		def = (*elfVerdef)(add(unsafe.Pointer(def), uintptr(def.vd_next)))
    	}
    
    	return -1 // cannot match any version
    }
    
    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