Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for ppc64x (0.11 sec)

  1. src/crypto/internal/nistec/p256_asm_ppc64le.s

    //go:build !purego
    
    #include "textflag.h"
    
    // This is a port of the s390x asm implementation.
    // to ppc64le.
    
    // Some changes were needed due to differences in
    // the Go opcodes and/or available instructions
    // between s390x and ppc64le.
    
    // 1. There were operand order differences in the
    // VSUBUQM, VSUBCUQ, and VSEL instructions.
    
    // 2. ppc64 does not have a multiply high and low
    // like s390x, so those were implemented using
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  2. configure.py

    
    def is_linux():
      return platform.system() == 'Linux'
    
    
    def is_macos():
      return platform.system() == 'Darwin'
    
    
    def is_ppc64le():
      return platform.machine() == 'ppc64le'
    
    
    def is_s390x():
      return platform.machine() == 's390x'
    
    
    def is_cygwin():
      return platform.system().startswith('CYGWIN_NT')
    
    
    def get_input(question):
      try:
        try:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  3. hack/local-up-cluster.sh

            ;;
          i?86*)
            host_arch=x86
            ;;
          s390x*)
            host_arch=s390x
            ;;
          ppc64le*)
            host_arch=ppc64le
            ;;
          *)
            echo "Unsupported host arch. Must be x86_64, 386, arm, arm64, s390x or ppc64le." >&2
            exit 1
            ;;
        esac
    
      if [[ -z "${host_arch}" ]]; then
        return
      fi
      echo -n "${host_arch}"
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

    // ArchConfig specifies the pod scheduling target architecture(amd64, ppc64le, s390x, arm64)
    // for all the Istio control plane components.
    message ArchConfig {
      // Sets pod scheduling weight for amd64 arch
      uint32 amd64 = 1;
    
      // Sets pod scheduling weight for ppc64le arch.
      uint32 ppc64le = 2;
    
      // Sets pod scheduling weight for s390x arch.
      uint32 s390x = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    	// address above 1<<47 unless mmap is called with a hint
    	// address above 1<<47 (which we never do).
    	//
    	// arm64 hardware (as of ARMv8) limits user addresses to 48
    	// bits, in the range [0, 1<<48).
    	//
    	// ppc64, mips64, and s390x support arbitrary 64 bit addresses
    	// in hardware. On Linux, Go leans on stricter OS limits. Based
    	// on Linux's processor.h, the user address space is limited as
    	// follows on 64-bit architectures:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    // go run mksyscall.go -openbsd -libc -tags openbsd,ppc64 syscall_bsd.go syscall_openbsd.go syscall_openbsd_ppc64.go
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build openbsd && ppc64
    
    package unix
    
    import (
    	"syscall"
    	"unsafe"
    )
    
    var _ syscall.Errno
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getgroups(ngid int, gid *_Gid_t) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    // mkerrors.sh -maix64
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build ppc64 && aix
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -maix64 _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	AF_APPLETALK                  = 0x10
    	AF_BYPASS                     = 0x19
    	AF_CCITT                      = 0xa
    	AF_CHAOS                      = 0x5
    	AF_DATAKIT                    = 0x9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    		if havedynamic == 0 && ctxt.HeadType != objabi.Hdarwin && ctxt.HeadType != objabi.Hsolaris {
    			*FlagD = true
    		}
    	}
    
    	if ctxt.LinkMode == LinkExternal && ctxt.Arch.Family == sys.PPC64 && buildcfg.GOOS != "aix" {
    		toc := ctxt.loader.LookupOrCreateSym(".TOC.", 0)
    		sb := ctxt.loader.MakeSymbolUpdater(toc)
    		sb.SetType(sym.SDYNIMPORT)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go

    // mkerrors.sh -m64
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build ppc64 && openbsd
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -m64 _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	AF_APPLETALK                      = 0x10
    	AF_BLUETOOTH                      = 0x20
    	AF_CCITT                          = 0xa
    	AF_CHAOS                          = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  10. src/debug/elf/file_test.go

    						{Attr: dwarf.AttrStmtList, Val: int64(0), Class: dwarf.ClassLinePtr},
    					},
    				},
    				pcRanges: [][2]uint64{{0x0, 0x44}},
    			},
    		},
    	},
    	{
    		"testdata/go-relocation-test-gcc482-ppc64le.obj",
    		[]relocationTestEntry{
    			{
    				entry: &dwarf.Entry{
    					Offset:   0xb,
    					Tag:      dwarf.TagCompileUnit,
    					Children: true,
    					Field: []dwarf.Field{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
Back to top