Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for stksize (0.14 sec)

  1. src/cmd/link/internal/ld/typelink.go

    	il.SetSize(int64(ptrsize * len(itabs)))
    	il.Grow(il.Size())
    	relocs = il.AddRelocs(len(itabs))
    	for i, s := range itabs {
    		r := relocs.At(i)
    		r.SetSym(s)
    		r.SetOff(int32(i * ptrsize))
    		r.SetSiz(uint8(ptrsize))
    		r.SetType(objabi.R_ADDR)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 03 21:13:25 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  2. src/runtime/vdso_elf64.go

    package runtime
    
    // ELF64 structure definitions for use by the vDSO loader
    
    type elfSym struct {
    	st_name  uint32
    	st_info  byte
    	st_other byte
    	st_shndx uint16
    	st_value uint64
    	st_size  uint64
    }
    
    type elfVerdef struct {
    	vd_version uint16 /* Version revision */
    	vd_flags   uint16 /* Version information */
    	vd_ndx     uint16 /* Version Index */
    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_elf32.go

    //go:build linux && (386 || arm)
    
    package runtime
    
    // ELF32 structure definitions for use by the vDSO loader
    
    type elfSym struct {
    	st_name  uint32
    	st_value uint32
    	st_size  uint32
    	st_info  byte
    	st_other byte
    	st_shndx uint16
    }
    
    type elfVerdef struct {
    	vd_version uint16 /* Version revision */
    	vd_flags   uint16 /* Version information */
    	vd_ndx     uint16 /* Version Index */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  4. src/runtime/defs1_solaris_amd64.go

    	__pthread_attrp *byte
    }
    
    type stat struct {
    	st_dev     uint64
    	st_ino     uint64
    	st_mode    uint32
    	st_nlink   uint32
    	st_uid     uint32
    	st_gid     uint32
    	st_rdev    uint64
    	st_size    int64
    	st_atim    timespec
    	st_mtim    timespec
    	st_ctim    timespec
    	st_blksize int32
    	pad_cgo_0  [4]byte
    	st_blocks  int64
    	st_fstype  [16]int8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:40:51 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/inittask.go

    		sh := ldr.Lookup("runtime.runtime_inittasks", 0)
    		sb := ldr.MakeSymbolUpdater(sh)
    		sb.SetSize(0)
    		sb.SetType(sym.SNOPTRDATA) // Could be SRODATA, but see issue 58857.
    		sb.AddAddr(ctxt.Arch, t)
    		sb.AddUint(ctxt.Arch, uint64(ldr.SymSize(t)/int64(ctxt.Arch.PtrSize)))
    		sb.AddUint(ctxt.Arch, uint64(ldr.SymSize(t)/int64(ctxt.Arch.PtrSize)))
    	}
    }
    
    // inittaskSym builds a symbol containing pointers to all the inittasks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/internal/abi/compiletype.go

    // CommonSize returns sizeof(Type) for a compilation target with a given ptrSize
    func CommonSize(ptrSize int) int { return 4*ptrSize + 8 + 8 }
    
    // StructFieldSize returns sizeof(StructField) for a compilation target with a given ptrSize
    func StructFieldSize(ptrSize int) int { return 3 * ptrSize }
    
    // UncommonSize returns sizeof(UncommonType).  This currently does not depend on ptrSize.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 03:01:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. src/internal/coverage/encodemeta/encodefile.go

    	mhsz := uint64(unsafe.Sizeof(coverage.MetaFileHeader{}))
    	stSize := m.stab.Size()
    	stOffset := mhsz + uint64(16*len(blobs))
    	preambleLength := stOffset + uint64(stSize)
    
    	if m.debug {
    		fmt.Fprintf(os.Stderr, "=+= sizeof(MetaFileHeader)=%d\n", mhsz)
    		fmt.Fprintf(os.Stderr, "=+= preambleLength=%d stSize=%d\n", preambleLength, stSize)
    	}
    
    	// Compute total size
    	tlen := preambleLength
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  8. src/internal/abi/abi_test.s

    #include "textflag.h"
    
    #ifdef GOARCH_386
    #define PTRSIZE 4
    #endif
    #ifdef GOARCH_arm
    #define PTRSIZE 4
    #endif
    #ifdef GOARCH_mips
    #define PTRSIZE 4
    #endif
    #ifdef GOARCH_mipsle
    #define PTRSIZE 4
    #endif
    #ifndef PTRSIZE
    #define PTRSIZE 8
    #endif
    
    TEXT	internal∕abi·FuncPCTestFn(SB),NOSPLIT,$0-0
    	RET
    
    GLOBL	internal∕abi·FuncPCTestFnAddr(SB), NOPTR, $PTRSIZE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 23 21:05:39 UTC 2021
    - 603 bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/data_test.go

    			bm:      "pie",
    			lm:      "internal",
    			rel:     ".rel",
    			relsize: 2 * sys.Arch386.PtrSize,
    			gotsize: sys.Arch386.PtrSize,
    		},
    		{
    			arch:    sys.ArchAMD64,
    			ht:      objabi.Hlinux,
    			bm:      "pie",
    			lm:      "internal",
    			rel:     ".rela",
    			relsize: 3 * sys.ArchAMD64.PtrSize,
    			gotsize: sys.ArchAMD64.PtrSize,
    		},
    		{
    			arch:    sys.ArchAMD64,
    			ht:      objabi.Hdarwin,
    			bm:      "pie",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 05 19:20:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/internal/sys/arch.go

    	Wasm
    )
    
    // Arch represents an individual architecture.
    type Arch struct {
    	Name   string
    	Family ArchFamily
    
    	ByteOrder binary.ByteOrder
    
    	// PtrSize is the size in bytes of pointers and the
    	// predeclared "int", "uint", and "uintptr" types.
    	PtrSize int
    
    	// RegSize is the size in bytes of general purpose registers.
    	RegSize int
    
    	// MinLC is the minimum length of an instruction code.
    	MinLC int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
Back to top