Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 290 for mips64le (0.38 sec)

  1. src/runtime/os_linux_mips64x.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.
    
    //go:build linux && (mips64 || mips64le)
    
    package runtime
    
    import "internal/cpu"
    
    func archauxv(tag, val uintptr) {
    	switch tag {
    	case _AT_HWCAP:
    		cpu.HWCap = uint(val)
    	}
    }
    
    func osArchInit() {}
    
    //go:nosplit
    func cputicks() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 996 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_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 linux && (mips64 || mips64le) && gc
    
    #include "textflag.h"
    
    //
    // System calls for mips64, Linux
    //
    
    // Just jump to package syscall's implementation for all these functions.
    // The runtime may know about them.
    
    TEXT ·Syscall(SB),NOSPLIT,$0-56
    	JMP	syscall·Syscall(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/runtime/os_linux_novdso.go

    // 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 && !386 && !amd64 && !arm && !arm64 && !loong64 && !mips64 && !mips64le && !ppc64 && !ppc64le && !riscv64 && !s390x
    
    package runtime
    
    func vdsoauxv(tag, val uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 347 bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_other_mips64x.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 !linux && (mips64 || mips64le)
    
    package cpu
    
    func archInit() {
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 256 bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/syslist.go

    	"amd64":       true,
    	"amd64p32":    true,
    	"arm":         true,
    	"armbe":       true,
    	"arm64":       true,
    	"arm64be":     true,
    	"loong64":     true,
    	"mips":        true,
    	"mipsle":      true,
    	"mips64":      true,
    	"mips64le":    true,
    	"mips64p32":   true,
    	"mips64p32le": true,
    	"ppc":         true,
    	"ppc64":       true,
    	"ppc64le":     true,
    	"riscv":       true,
    	"riscv64":     true,
    	"s390":        true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 04 01:45:58 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/mips64le/include /tmp/mips64le/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build mips64le && linux
    
    package unix
    
    const (
    	SYS_READ                    = 5000
    	SYS_WRITE                   = 5001
    	SYS_OPEN                    = 5002
    	SYS_CLOSE                   = 5003
    	SYS_STAT                    = 5004
    	SYS_FSTAT                   = 5005
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. src/internal/syscall/unix/sysnum_linux_mips64x.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.
    
    //go:build mips64 || mips64le
    
    package unix
    
    const (
    	getrandomTrap       uintptr = 5313
    	copyFileRangeTrap   uintptr = 5320
    	pidfdSendSignalTrap uintptr = 5424
    	pidfdOpenTrap       uintptr = 5434
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 359 bytes
    - Viewed (0)
  8. src/internal/bytealg/indexbyte_generic.go

    // floating point instructions, which are illegal in a note handler.
    
    //go:build !386 && (!amd64 || plan9) && !s390x && !arm && !arm64 && !loong64 && !ppc64 && !ppc64le && !mips && !mipsle && !mips64 && !mips64le && !riscv64 && !wasm
    
    package bytealg
    
    func IndexByte(b []byte, c byte) int {
    	for i, x := range b {
    		if x == c {
    			return i
    		}
    	}
    	return -1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:30:15 UTC 2023
    - 776 bytes
    - Viewed (0)
  9. src/runtime/stubs_mips64x.go

    // Copyright 2019 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
    
    package runtime
    
    import "unsafe"
    
    // Called from assembly only; declared for go vet.
    func load_g()
    func save_g()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 10:04:13 UTC 2023
    - 522 bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/endian_little.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build 386 || amd64 || amd64p32 || alpha || arm || arm64 || loong64 || mipsle || mips64le || mips64p32le || nios2 || ppc64le || riscv || riscv64 || sh || wasm
    
    package cpu
    
    // IsBigEndian records whether the GOARCH's byte order is big endian.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 433 bytes
    - Viewed (0)
Back to top