Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for s390 (0.13 sec)

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

    	// Notes:
    	// - for linux/amd64 and linux/arm64, for relro we'll always see a
    	//   .got section when building with -buildmode=pie (in addition
    	//   to .dynamic); for some other less mainstream archs (ppc64le,
    	//   s390) this is not the case (on ppc64le for example we only
    	//   see got refs from C objects). Hence we put ".dynamic" in the
    	//   'want RO' list below and ".got" in the 'want RO if present".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    	locked = true
    	if clone3 != nil {
    		pid, err1 = rawVforkSyscall(_SYS_clone3, uintptr(unsafe.Pointer(clone3)), unsafe.Sizeof(*clone3), 0)
    	} else {
    		flags |= uintptr(SIGCHLD)
    		if runtime.GOARCH == "s390x" {
    			// On Linux/s390, the first two arguments of clone(2) are swapped.
    			pid, err1 = rawVforkSyscall(SYS_CLONE, 0, flags, uintptr(unsafe.Pointer(&pidfd)))
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. test/codegen/shift.go

    	// arm64:"LSL",-"AND"
    	// ppc64x:"RLDICL",-"ORN",-"ISEL"
    	// riscv64:"SLL",-"AND\t",-"SLTIU"
    	// s390x:-"RISBGZ",-"AND",-"LOCGR"
    	return v << (s & 63)
    }
    
    func rshMask64Ux64(v uint64, s uint64) uint64 {
    	// arm64:"LSR",-"AND",-"CSEL"
    	// ppc64x:"RLDICL",-"ORN",-"ISEL"
    	// riscv64:"SRL\t",-"AND\t",-"SLTIU"
    	// s390x:-"RISBGZ",-"AND",-"LOCGR"
    	return v >> (s & 63)
    }
    
    func rshMask64x64(v int64, s uint64) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/crypto/tls/cipher_suites.go

    	// Keep in sync with crypto/aes/cipher_s390x.go.
    	hasGCMAsmS390X = cpu.S390X.HasAES && cpu.S390X.HasAESCBC && cpu.S390X.HasAESCTR &&
    		(cpu.S390X.HasGHASH || cpu.S390X.HasAESGCM)
    
    	hasAESGCMHardwareSupport = runtime.GOARCH == "amd64" && hasGCMAsmAMD64 ||
    		runtime.GOARCH == "arm64" && hasGCMAsmARM64 ||
    		runtime.GOARCH == "s390x" && hasGCMAsmS390X
    )
    
    var aesgcmCiphers = map[uint16]bool{
    	// TLS 1.2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. hack/lib/golang.sh

    export KUBE_GOPATH
    
    # The server platform we are building on.
    readonly KUBE_SUPPORTED_SERVER_PLATFORMS=(
      linux/amd64
      linux/arm64
      linux/s390x
      linux/ppc64le
    )
    
    # The node platforms we build for
    readonly KUBE_SUPPORTED_NODE_PLATFORMS=(
      linux/amd64
      linux/arm64
      linux/s390x
      linux/ppc64le
      windows/amd64
    )
    
    # If we update this we should also update the set of platforms whose standard
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  6. cluster/images/etcd/Makefile

    # The output type could either be docker (local), or registry.
    # If it is registry, it will also allow us to push the Windows images.
    OUTPUT_TYPE ?= docker
    
    ALL_OS = linux windows
    ALL_ARCH.linux = amd64 arm arm64 ppc64le s390x
    ALL_OS_ARCH.linux = $(foreach arch, ${ALL_ARCH.linux}, linux-$(arch))
    ALL_ARCH.windows = amd64
    ALL_OSVERSIONS.windows := 1809 ltsc2022
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/asm.go

    			// 3-operand jumps.
    			// First two must be registers
    			target = &a[2]
    			prog.From = a[0]
    			prog.Reg = p.getRegister(prog, op, &a[1])
    			break
    		}
    		if p.arch.Family == sys.S390X {
    			// 3-operand jumps.
    			target = &a[2]
    			prog.From = a[0]
    			if a[1].Reg != 0 {
    				// Compare two registers and jump.
    				prog.Reg = p.getRegister(prog, op, &a[1])
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. cluster/gce/upgrade.sh

            ;;
          arm*)
            host_arch=arm
            corefile_tool_SHA="721dbfcabda71a2648fd7d4d9241930313397a07d72828b2054315f85b177794"
            ;;
          s390x*)
            host_arch=s390x
            corefile_tool_SHA="56452a00a703afd4f816d558f78f279af5f29f1940a478baa694da20f4586698"
            ;;
          ppc64le*)
            host_arch=ppc64le
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  9. test/codegen/arithmetic.go

    	// 386:`SHLL\t[$]5`,`LEAL\t\(.*\)\(.*\*2\),`,-`IMULL`
    	// arm64:`LSL\t[$]5`,`ADD\sR[0-9]+<<1,\sR[0-9]+`,-`MUL`
    	// arm:`SLL\t[$]5`,`ADD\sR[0-9]+<<1,\sR[0-9]+`,-`MUL`
    	// s390x:`SLD\t[$]5`,`SLD\t[$]6`,-`MULLD`
    	return n * 96
    }
    
    func Mul_n120(n int) int {
    	// s390x:`SLD\t[$]3`,`SLD\t[$]7`,-`MULLD`
    	return n * -120
    }
    
    func MulMemSrc(a []uint32, b []float32) {
    	// 386:`IMULL\s4\([A-Z]+\),\s[A-Z]+`
    	a[0] *= a[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:28:00 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. README.md

    | 64-bit PowerPC LE (ppc64le)    | <https://dl.min.io/server/minio/release/linux-ppc64le/minio> |
    | IBM Z-Series (S390X)           | <https://dl.min.io/server/minio/release/linux-s390x/minio>   |
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 10 00:22:36 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top