Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 100 for s390 (0.06 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go

    // go run mksyscall.go -tags linux,s390x syscall_linux.go syscall_linux_s390x.go syscall_linux_alarm.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build linux && s390x
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func fanotifyMark(fd int, flags uint, mask uint64, dirFd int, pathname *byte) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_darwin_amd64.go

    	SYS___MAC_GET_PROC                 = 386
    	SYS___MAC_SET_PROC                 = 387
    	SYS___MAC_GET_FD                   = 388
    	SYS___MAC_SET_FD                   = 389
    	SYS___MAC_GET_PID                  = 390
    	SYS___MAC_GET_LCID                 = 391
    	SYS___MAC_GET_LCTX                 = 392
    	SYS___MAC_SET_LCTX                 = 393
    	SYS_SETLCID                        = 394
    	SYS_GETLCID                        = 395
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_s390x.s

    // 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.
    
    // System calls and other system stuff for Linux s390x; see
    // /usr/include/asm/unistd.h for the syscall number definitions.
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    #define SYS_exit                  1
    #define SYS_read                  3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		return "Call"
    	case "SymValAndOff":
    		return "Sym"
    	case "Typ":
    		return "*types.Type"
    	case "TypSize":
    		return "*types.Type"
    	case "S390XCCMask":
    		return "s390x.CCMask"
    	case "S390XRotateParams":
    		return "s390x.RotateParams"
    	default:
    		return "invalid"
    	}
    }
    
    // auxIntType returns the Go type that this operation should store in its auxInt field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go

    	SYS_BPF                          = 386
    	SYS_EXECVEAT                     = 387
    	SYS_USERFAULTFD                  = 388
    	SYS_MEMBARRIER                   = 389
    	SYS_MLOCK2                       = 390
    	SYS_COPY_FILE_RANGE              = 391
    	SYS_PREADV2                      = 392
    	SYS_PWRITEV2                     = 393
    	SYS_PKEY_MPROTECT                = 394
    	SYS_PKEY_ALLOC                   = 395
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/compile/internal/test/inl_test.go

    	}
    	if runtime.GOARCH == "amd64" || runtime.GOARCH == "arm64" || runtime.GOARCH == "loong64" || runtime.GOARCH == "mips" || runtime.GOARCH == "mips64" || runtime.GOARCH == "ppc64" || runtime.GOARCH == "riscv64" || runtime.GOARCH == "s390x" {
    		// internal/runtime/atomic.Loaduintptr is only intrinsified on these platforms.
    		want["runtime"] = append(want["runtime"], "traceAcquire")
    	}
    	if bits.UintSize == 64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. hack/lib/util.sh

          ;;
        arm*)
          host_arch=arm
          ;;
        i?86*)
          host_arch=x86
          ;;
        s390x*)
          host_arch=s390x
          ;;
        ppc64le*)
          host_arch=ppc64le
          ;;
        *)
          kube::log::error "Unsupported host arch. Must be x86_64, 386, arm, arm64, s390x or ppc64le."
          exit 1
          ;;
      esac
      echo "${host_arch}"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go

    	SYS___MAC_GET_PROC                 = 386
    	SYS___MAC_SET_PROC                 = 387
    	SYS___MAC_GET_FD                   = 388
    	SYS___MAC_SET_FD                   = 389
    	SYS___MAC_GET_PID                  = 390
    	SYS_PSELECT                        = 394
    	SYS_PSELECT_NOCANCEL               = 395
    	SYS_READ_NOCANCEL                  = 396
    	SYS_WRITE_NOCANCEL                 = 397
    	SYS_OPEN_NOCANCEL                  = 398
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

         * {@link ChainedLocalRepositoryManager}.
         * Default value: {@code null}, no chained LRM is used.
         *
         * @since 3.9.0
         */
        private static final String MAVEN_REPO_LOCAL_TAIL = "maven.repo.local.tail";
    
        /**
         * User property for reverse dependency tree. If enabled, Maven will record ".tracking" directory into local
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top