Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for purego (0.28 sec)

  1. src/cmd/dist/buildtool.go

    	// which may contain unsupported instructions.
    	// Use the purego build tag to disable other assembly code,
    	// such as in cmd/internal/notsha256.
    	cmd := []string{
    		pathf("%s/bin/go", goroot_bootstrap),
    		"install",
    		"-tags=math_big_pure_go compiler_bootstrap purego",
    	}
    	if vflag > 0 {
    		cmd = append(cmd, "-v")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/runtime/stubs.go

    // Notable members of the hall of shame include:
    //   - github.com/bytedance/sonic
    //   - github.com/cloudwego/dynamicgo
    //   - github.com/cloudwego/frugal
    //   - github.com/ebitengine/purego
    //   - github.com/tetratelabs/wazero
    //   - github.com/ugorji/go/codec
    //   - gvisor.dev/gvisor
    //   - github.com/sagernet/gvisor
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_s390x.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.
    
    //go:build !purego
    
    package aes
    
    import (
    	"crypto/cipher"
    	"crypto/internal/alias"
    	"crypto/subtle"
    	"errors"
    	"internal/byteorder"
    	"internal/cpu"
    )
    
    // This file contains two implementations of AES-GCM. The first implementation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/sha3/keccakf_amd64.s

    // Copyright 2015 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 && !purego && gc
    
    // This code was translated into a form compatible with 6a from the public
    // domain sources at https://github.com/gvanas/KeccakCodePackage
    
    // Offsets in state
    #define _ba  (0*8)
    #define _be  (1*8)
    #define _bi  (2*8)
    #define _bo  (3*8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/keccakf.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 || purego || !gc
    
    package sha3
    
    import "math/bits"
    
    // rc stores the round constants for use in the ι step.
    var rc = [24]uint64{
    	0x0000000000000001,
    	0x0000000000008082,
    	0x800000000000808A,
    	0x8000000080008000,
    	0x000000000000808B,
    	0x0000000080000001,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. src/go/build/deps_test.go

    	< go/importer;
    
    	NET, crypto/rand, mime/quotedprintable
    	< mime/multipart;
    
    	crypto/tls
    	< net/smtp;
    
    	crypto/rand
    	< hash/maphash; # for purego implementation
    
    	# HTTP, King of Dependencies.
    
    	FMT
    	< golang.org/x/net/http2/hpack
    	< net/http/internal, net/http/internal/ascii, net/http/internal/testcert;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm.go

    //                          256-bit primes"
    // https://link.springer.com/article/10.1007%2Fs13389-014-0090-x
    // https://eprint.iacr.org/2013/816.pdf
    
    //go:build (amd64 || arm64 || ppc64le || s390x) && !purego
    
    package nistec
    
    import (
    	_ "embed"
    	"errors"
    	"internal/byteorder"
    	"math/bits"
    	"runtime"
    	"unsafe"
    )
    
    // p256Element is a P-256 base field element in [0, P-1] in the Montgomery
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/crypto/aes/asm_ppc64x.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.
    
    //go:build (ppc64 || ppc64le) && !purego
    
    // Based on CRYPTOGAMS code with the following comment:
    // # ====================================================================
    // # Written by Andy Polyakov <******@****.***> for the OpenSSL
    // # project. The module is, however, dual licensed under OpenSSL and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:05:32 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/runtime/cgocall.go

    // it's not safe to grow or scan the stack.
    //
    // cgocall should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/ebitengine/purego
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cgocall
    //go:nosplit
    func cgocall(fn, arg unsafe.Pointer) int32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. OWNERS_ALIASES

        - puerco # SIG Technical Lead / RelEng subproject owner / Release Manager
        - saschagrunert # SIG Chair / RelEng subproject owner / Release Manager
        - Verolop # SIG Technical Lead / RelEng subproject owner / Release Manager
      release-managers:
        - cpanato
        - jeremyrickard
        - justaugustus
        - palnabarun
        - puerco
        - saschagrunert
        - Verolop
        - xmudrii
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 23:08:03 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top