Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 453 for ppc64x (0.12 sec)

  1. src/crypto/sha256/sha256block_decl.go

    // Copyright 2013 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 (386 || amd64 || s390x || ppc64le || ppc64) && !purego
    
    package sha256
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 291 bytes
    - Viewed (0)
  2. src/math/modf_asm.go

    // Copyright 2021 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 arm64 || ppc64 || ppc64le
    
    package math
    
    const haveArchModf = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 292 bytes
    - Viewed (0)
  3. src/internal/platform/supported.go

    			// https://go.dev/issue/14449
    			return true
    		case "arm64":
    			if goos == "windows" {
    				// windows/arm64 internal linking is not implemented.
    				return true
    			}
    		case "ppc64":
    			// Big Endian PPC64 cgo internal linking is not implemented for aix or linux.
    			// https://go.dev/issue/8912
    			if goos == "aix" || goos == "linux" {
    				return true
    			}
    		}
    
    		switch goos {
    		case "android":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:50:22 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/internal/syscall/unix/at_sysnum_newfstatat_linux.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 amd64 || mips64 || mips64le || ppc64 || ppc64le || s390x
    
    package unix
    
    import "syscall"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 312 bytes
    - Viewed (0)
  5. src/internal/syscall/unix/sysnum_linux_ppc64x.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 ppc64 || ppc64le
    
    package unix
    
    const (
    	getrandomTrap       uintptr = 359
    	copyFileRangeTrap   uintptr = 379
    	pidfdSendSignalTrap uintptr = 424
    	pidfdOpenTrap       uintptr = 434
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 01:23:00 UTC 2024
    - 353 bytes
    - Viewed (0)
  6. src/syscall/asm_linux_ppc64x.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 && (ppc64 || ppc64le)
    
    #include "textflag.h"
    
    //
    // System calls for ppc64, Linux
    //
    
    // func rawVforkSyscall(trap, a1, a2, a3 uintptr) (r1, err uintptr)
    TEXT ·rawVforkSyscall(SB),NOSPLIT|NOFRAME,$0-48
    	MOVD	a1+8(FP), R3
    	MOVD	a2+16(FP), R4
    	MOVD	a3+24(FP), R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 913 bytes
    - Viewed (0)
  7. src/internal/abi/abi_ppc64x.go

    // Copyright 2021 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 ppc64 || ppc64le
    
    package abi
    
    const (
    	// See abi_generic.go.
    
    	// R3 - R10, R14 - R17.
    	IntArgRegs = 12
    
    	// F1 - F12.
    	FloatArgRegs = 12
    
    	EffectiveFloatRegSize = 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 21 18:28:30 UTC 2022
    - 341 bytes
    - Viewed (0)
  8. src/crypto/md5/md5block_decl.go

    // Copyright 2013 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 (amd64 || 386 || arm || ppc64le || ppc64 || s390x || arm64) && !purego
    
    package md5
    
    const haveAsm = true
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 326 bytes
    - Viewed (0)
  9. src/math/modf_noasm.go

    // Copyright 2021 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 !arm64 && !ppc64 && !ppc64le
    
    package math
    
    const haveArchModf = false
    
    func archModf(f float64) (int float64, frac float64) {
    	panic("not implemented")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 326 bytes
    - Viewed (0)
  10. src/crypto/sha256/sha256block_generic.go

    // Copyright 2016 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 (!amd64 && !386 && !s390x && !ppc64le && !ppc64 && !arm64) || purego
    
    package sha256
    
    func block(dig *digest, p []byte) {
    	blockGeneric(dig, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 317 bytes
    - Viewed (0)
Back to top