Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for ppc64x (0.16 sec)

  1. src/crypto/internal/nistec/p256_asm_table_test.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 !purego && (amd64 || arm64 || ppc64le || s390x)
    
    package nistec
    
    import (
    	"fmt"
    	"testing"
    )
    
    func TestP256PrecomputedTable(t *testing.T) {
    	base := NewP256Point().SetGenerator()
    
    	for i := 0; i < 43; i++ {
    		t.Run(fmt.Sprintf("table[%d]", i), func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. src/internal/bytealg/bytealg.go

    	offsetX86HasAVX2   = unsafe.Offsetof(cpu.X86.HasAVX2)
    	offsetX86HasPOPCNT = unsafe.Offsetof(cpu.X86.HasPOPCNT)
    
    	offsetS390xHasVX = unsafe.Offsetof(cpu.S390X.HasVX)
    
    	offsetPPC64HasPOWER9 = unsafe.Offsetof(cpu.PPC64.IsPOWER9)
    )
    
    // MaxLen is the maximum length of the string to be searched for (argument b) in Index.
    // If MaxLen is not 0, make sure MaxLen >= 4.
    var MaxLen int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. common/scripts/setup_env.sh

        TARGET_ARCH=arm64
    elif [[ ${LOCAL_ARCH} == armv* ]]; then
        TARGET_ARCH=arm
    elif [[ ${LOCAL_ARCH} == s390x ]]; then
        TARGET_ARCH=s390x
    elif [[ ${LOCAL_ARCH} == ppc64le ]]; then
        TARGET_ARCH=ppc64le
    else
        echo "This system's architecture, ${LOCAL_ARCH}, isn't supported"
        exit 1
    fi
    
    LOCAL_OS=$(uname)
    
    # Pass environment set target operating-system to build system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/modules.txt

    ## explicit; go 1.13
    github.com/ianlancetaylor/demangle
    # golang.org/x/arch v0.8.0
    ## explicit; go 1.18
    golang.org/x/arch/arm/armasm
    golang.org/x/arch/arm64/arm64asm
    golang.org/x/arch/ppc64/ppc64asm
    golang.org/x/arch/x86/x86asm
    # golang.org/x/build v0.0.0-20240603162849-5dfbda438323
    ## explicit; go 1.21
    golang.org/x/build/relnote
    # golang.org/x/mod v0.18.0
    ## explicit; go 1.18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/runtime/export_debug_test.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 || ppc64le) && linux
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/stringslite"
    	"unsafe"
    )
    
    // InjectDebugCall injects a debugger call to fn into g. regArgs must
    // contain any arguments to fn that are passed in registers, according
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_openbsd_ppc64.s

    // go run mkasm.go openbsd ppc64
    // Code generated by the command above; DO NOT EDIT.
    #include "textflag.h"
    TEXT ·libc_getgroups_trampoline(SB),NOSPLIT,$0-0
    	CALL	libc_getgroups(SB)
    	RET
    TEXT ·libc_setgroups_trampoline(SB),NOSPLIT,$0-0
    	CALL	libc_setgroups(SB)
    	RET
    TEXT ·libc_wait4_trampoline(SB),NOSPLIT,$0-0
    	CALL	libc_wait4(SB)
    	RET
    TEXT ·libc_accept_trampoline(SB),NOSPLIT,$0-0
    	CALL	libc_accept(SB)
    	RET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/chacha20/chacha_ppc64le.s

    // # details see http://www.openssl.org/~appro/cryptogams/.
    // # ====================================================================
    
    // Code for the perl script that generates the ppc64 assembler
    // can be found in the cryptogams repository at the link below. It is based on
    // the original from openssl.
    
    // https://github.com/dot-asm/cryptogams/commit/a60f5b50ed908e91
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. src/syscall/syscall_plan9.go

    	tv.Sec = int32(nsec / 1e9)
    	return
    }
    
    func nsec() int64 {
    	var scratch int64
    
    	r0, _, _ := Syscall(SYS_NSEC, uintptr(unsafe.Pointer(&scratch)), 0, 0)
    	// TODO(aram): remove hack after I fix _nsec in the pc64 kernel.
    	if r0 == 0 {
    		return scratch
    	}
    	return int64(r0)
    }
    
    func Gettimeofday(tv *Timeval) error {
    	nsec := nsec()
    	*tv = NsecToTimeval(nsec)
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top