Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 237 for map_64 (0.18 sec)

  1. src/internal/goarch/goarch_mips64.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // 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)
  2. src/internal/goarch/goarch_mips64le.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // 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)
  3. src/internal/syscall/unix/siginfo_linux_mipsx.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips || mipsle || mips64 || mips64le)
    
    package unix
    
    type siErrnoCode struct {
    	Code  int32
    	Errno int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 288 bytes
    - Viewed (0)
  4. src/syscall/asm_linux_mips64x.s

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build linux && (mips64 || mips64le)
    
    #include "textflag.h"
    
    //
    // System calls for mips64, Linux
    //
    
    // func rawVforkSyscall(trap, a1, a2, a3 uintptr) (r1, err uintptr)
    TEXT ·rawVforkSyscall(SB),NOSPLIT|NOFRAME,$0-48
    	MOVV	a1+8(FP), R4
    	MOVV	a2+16(FP), R5
    	MOVV	a3+24(FP), R6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 985 bytes
    - Viewed (0)
  5. src/runtime/atomic_mips64x.s

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build mips64 || mips64le
    
    #include "textflag.h"
    
    #define SYNC	WORD $0xf
    
    TEXT ·publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
    	SYNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 300 bytes
    - Viewed (0)
  6. src/internal/syscall/unix/at_fstatat.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build dragonfly || (linux && !loong64) || netbsd || (openbsd && mips64)
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    func Fstatat(dirfd int, path string, stat *syscall.Stat_t, flags int) error {
    	var p *byte
    	p, err := syscall.BytePtrFromString(path)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 646 bytes
    - Viewed (0)
  7. src/syscall/syscall_openbsd1.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build openbsd && mips64
    
    package syscall
    
    //sys	readlen(fd int, buf *byte, nbuf int) (n int, err error) = SYS_READ
    //sys	Seek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK
    //sys	getcwd(buf []byte) (n int, err error) = SYS___GETCWD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 534 bytes
    - Viewed (0)
  8. src/cmd/internal/sys/arch.go

    }
    
    var ArchMIPS64 = &Arch{
    	Name:           "mips64",
    	Family:         MIPS64,
    	ByteOrder:      binary.BigEndian,
    	PtrSize:        8,
    	RegSize:        8,
    	MinLC:          4,
    	Alignment:      8,
    	CanMergeLoads:  false,
    	HasLR:          true,
    	FixedFrameSize: 8, // LR
    }
    
    var ArchMIPS64LE = &Arch{
    	Name:           "mips64le",
    	Family:         MIPS64,
    	ByteOrder:      binary.LittleEndian,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 19:51:03 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/mips64/obj.go

    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package mips64
    
    import (
    	"cmd/internal/objabi"
    	"cmd/internal/sys"
    	"cmd/link/internal/ld"
    	"internal/buildcfg"
    )
    
    func Init() (*sys.Arch, ld.Arch) {
    	arch := sys.ArchMIPS64
    	musl := "/lib/ld-musl-mips64.so.1"
    	if buildcfg.GOARCH == "mips64le" {
    		arch = sys.ArchMIPS64LE
    		musl = "/lib/ld-musl-mips64el.so.1"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. src/runtime/vdso_in_none.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (linux && !386 && !amd64 && !arm && !arm64 && !loong64 && !mips64 && !mips64le && !ppc64 && !ppc64le && !riscv64 && !s390x) || !linux
    
    package runtime
    
    // A dummy version of inVDSOPage for targets that don't use a VDSO.
    
    func inVDSOPage(pc uintptr) bool {
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 443 bytes
    - Viewed (0)
Back to top