Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Phentsize (0.11 sec)

  1. src/cmd/internal/buildid/buildid_test.go

    			if err := binary.Read(bytes.NewReader(data), order, &hdr); err != nil {
    				t.Error(err)
    				continue
    			}
    
    			phoff := hdr.Phoff
    			phnum := int(hdr.Phnum)
    			phsize := uint64(hdr.Phentsize)
    
    			for i := 0; i < phnum; i++ {
    				var phdr elf.Prog64
    				if err := binary.Read(bytes.NewReader(data[phoff:]), order, &phdr); err != nil {
    					t.Error(err)
    					continue
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/runtime/pprof/elf.go

    		shentsize = int64(byteOrder.Uint16(buf[58:]))
    		if shentsize != 64 {
    			return "", errBadELF
    		}
    		shnum = int(byteOrder.Uint16(buf[60:]))
    	}
    
    	for i := 0; i < shnum; i++ {
    		if _, err := f.ReadAt(buf[:shentsize], shoff+int64(i)*shentsize); err != nil {
    			return "", err
    		}
    		if typ := byteOrder.Uint32(buf[4:]); typ != 7 { // SHT_NOTE
    			continue
    		}
    		var off, size int64
    		if shentsize == 40 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/threshold_notifier_linux.go

    	libcontainercgroups "github.com/opencontainers/runc/libcontainer/cgroups"
    	"golang.org/x/sys/unix"
    	"k8s.io/klog/v2"
    )
    
    const (
    	// eventSize is the number of bytes returned by a successful read from an eventfd
    	// see http://man7.org/linux/man-pages/man2/eventfd.2.html for more information
    	eventSize = 8
    	// numFdEvents is the number of events we can record at once.
    	// If EpollWait finds more than this, they will be missed.
    	numFdEvents = 6
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 01 21:59:54 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  4. src/runtime/vdso_elf64.go

    	sh_size      uint64 /* Section size in bytes */
    	sh_link      uint32 /* Link to another section */
    	sh_info      uint32 /* Additional section information */
    	sh_addralign uint64 /* Section alignment */
    	sh_entsize   uint64 /* Entry size if section holds table */
    }
    
    type elfDyn struct {
    	d_tag int64  /* Dynamic entry type */
    	d_val uint64 /* Integer value */
    }
    
    type elfVerdaux 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)
  5. src/runtime/vdso_elf32.go

    	sh_size      uint32 /* Section size in bytes */
    	sh_link      uint32 /* Link to another section */
    	sh_info      uint32 /* Additional section information */
    	sh_addralign uint32 /* Section alignment */
    	sh_entsize   uint32 /* Entry size if section holds table */
    }
    
    type elfDyn struct {
    	d_tag int32  /* Dynamic entry type */
    	d_val uint32 /* Integer value */
    }
    
    type elfVerdaux 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)
Back to top