Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 157 for s390 (0.04 sec)

  1. src/cmd/internal/obj/s390x/anamesz.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.
    
    package s390x
    
    var cnamesz = []string{
    	"NONE",
    	"REG",
    	"FREG",
    	"VREG",
    	"AREG",
    	"ZCON",
    	"SCON",
    	"UCON",
    	"ADDCON",
    	"ANDCON",
    	"LCON",
    	"DCON",
    	"SACON",
    	"LACON",
    	"DACON",
    	"SBRA",
    	"LBRA",
    	"SAUTO",
    	"LAUTO",
    	"ZOREG",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 04:57:30 UTC 2016
    - 505 bytes
    - Viewed (0)
  2. test/fixedbugs/issue58826.go

    // compile -dynlink
    
    //go:build 386 || amd64 || arm || arm64 || ppc64le || s390x
    // (platforms that support -dynlink flag)
    
    // 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.
    
    // Issue 58826: assembler cannot handle global access with large
    // offset in -dynlink mode on ARM64.
    
    package p
    
    var x [2197]uint8
    
    func F() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 07 21:29:30 UTC 2023
    - 478 bytes
    - Viewed (0)
  3. src/crypto/sha256/sha256block_s390x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    package sha256
    
    import "internal/cpu"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 252 bytes
    - Viewed (0)
  4. src/crypto/sha512/sha512block_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 (ppc64le || ppc64 || riscv64 || s390x) && !purego
    
    package sha512
    
    //go:noescape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 286 bytes
    - Viewed (0)
  5. 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)
  6. src/crypto/sha1/sha1block_generic.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 (!amd64 && !386 && !arm && !s390x && !arm64) || purego
    
    package sha1
    
    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
    - 301 bytes
    - Viewed (0)
  7. src/internal/bytealg/index_native.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 || arm64 || s390x || ppc64le || ppc64
    
    package bytealg
    
    // Index returns the index of the first instance of b in a, or -1 if b is not present in a.
    // Requires 2 <= len(b) <= MaxLen.
    //
    //go:noescape
    func Index(a, b []byte) int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 22:56:35 UTC 2023
    - 590 bytes
    - Viewed (0)
  8. src/math/dim_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 amd64 || arm64 || riscv64 || s390x
    
    package math
    
    const haveArchMax = true
    
    func archMax(x, y float64) float64
    
    const haveArchMin = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 344 bytes
    - Viewed (0)
  9. build/pause/Makefile

    TRIPLE.windows-amd64 := x86_64-w64-mingw32
    TRIPLE.linux-amd64 := x86_64-linux-gnu
    TRIPLE.linux-arm := arm-linux-gnueabihf
    TRIPLE.linux-arm64 := aarch64-linux-gnu
    TRIPLE.linux-ppc64le := powerpc64le-linux-gnu
    TRIPLE.linux-s390x := s390x-linux-gnu
    TRIPLE := ${TRIPLE.${OS}-${ARCH}}
    BASE.linux := scratch
    # Source for windows pause image base is located at https://github.com/microsoft/windows-pause-image-base
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. test/intrinsic.go

    // errorcheckandrundir -0 -d=ssa/intrinsics/debug
    
    //go:build amd64 || arm64 || arm || s390x
    
    // 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 270 bytes
    - Viewed (0)
Back to top