Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 383 for stksize (0.13 sec)

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

    		pad := int(Rnd(int64(len(deltaBuf)), int64(d.arch.PtrSize))) - len(deltaBuf)
    		deltaBuf = append(deltaBuf, zeros[:pad]...)
    
    		// Emit the FDE header, Section 6.4.1.
    		//	4 bytes: length, must be multiple of thearch.ptrsize
    		//	4/8 bytes: Pointer to the CIE above, at offset 0
    		//	ptrsize: initial location
    		//	ptrsize: address range
    
    		fdeLength := uint64(4 + 2*d.arch.PtrSize + len(deltaBuf))
    		if isdw64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. internal/disk/fdatasync_linux.go

    // do not require flushing because they are not necessary for a subsequent data
    // read to be handled correctly. On the other hand, a change to the file size
    // (st_size, as made by say ftruncate(2)), would require a metadata flush.
    //
    // The aim of fdatasync() is to reduce disk activity for applications that
    // do not require all metadata to be synchronized with the disk.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 29 23:40:28 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. test/nosplit.go

    		var buf bytes.Buffer
    		ptrSize := 4
    		switch goarch {
    		case "mips", "mipsle":
    			fmt.Fprintf(&buf, "#define REGISTER (R0)\n")
    		case "mips64", "mips64le":
    			ptrSize = 8
    			fmt.Fprintf(&buf, "#define REGISTER (R0)\n")
    		case "loong64":
    			ptrSize = 8
    			fmt.Fprintf(&buf, "#define REGISTER (R0)\n")
    		case "ppc64", "ppc64le":
    			ptrSize = 8
    			fmt.Fprintf(&buf, "#define REGISTER (CTR)\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. src/runtime/internal/sys/consts.go

    // Int64Align is the required alignment for a 64-bit integer (4 on 32-bit systems, 8 on 64-bit).
    const Int64Align = goarch.PtrSize
    
    // MinFrameSize is the size of the system-reserved words at the bottom
    // of a frame (just above the architectural stack pointer).
    // It is zero on x86 and PtrSize on most non-x86 (LR-based) systems.
    // On PowerPC it is larger, to cover three more reserved words:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 16:26:25 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. src/internal/goarch/goarch_mipsle.go

    // license that can be found in the LICENSE file.
    
    package goarch
    
    const (
    	_ArchFamily          = MIPS
    	_DefaultPhysPageSize = 65536
    	_PCQuantum           = 4
    	_MinFrameSize        = 4
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 329 bytes
    - Viewed (0)
  6. src/internal/goarch/goarch_wasm.go

    // license that can be found in the LICENSE file.
    
    package goarch
    
    const (
    	_ArchFamily          = WASM
    	_DefaultPhysPageSize = 65536
    	_PCQuantum           = 1
    	_MinFrameSize        = 0
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 329 bytes
    - Viewed (0)
  7. src/internal/goarch/goarch_mips64.go

    // license that can be found in the LICENSE file.
    
    package goarch
    
    const (
    	_ArchFamily          = MIPS64
    	_DefaultPhysPageSize = 16384
    	_PCQuantum           = 4
    	_MinFrameSize        = 8
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 331 bytes
    - Viewed (0)
  8. src/internal/goarch/goarch_mips64le.go

    // license that can be found in the LICENSE file.
    
    package goarch
    
    const (
    	_ArchFamily          = MIPS64
    	_DefaultPhysPageSize = 16384
    	_PCQuantum           = 4
    	_MinFrameSize        = 8
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 331 bytes
    - Viewed (0)
  9. src/internal/goarch/goarch_riscv64.go

    // license that can be found in the LICENSE file.
    
    package goarch
    
    const (
    	_ArchFamily          = RISCV64
    	_DefaultPhysPageSize = 4096
    	_PCQuantum           = 4
    	_MinFrameSize        = 8
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 17 18:54:38 UTC 2021
    - 331 bytes
    - Viewed (0)
  10. src/internal/goarch/goarch_loong64.go

    //go:build loong64
    
    package goarch
    
    const (
    	_ArchFamily          = LOONG64
    	_DefaultPhysPageSize = 16384
    	_PCQuantum           = 4
    	_MinFrameSize        = 8
    	_StackAlign          = PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:48:21 UTC 2022
    - 352 bytes
    - Viewed (0)
Back to top