Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 623 for Implementation (0.36 sec)

  1. src/vendor/golang.org/x/crypto/chacha20poly1305/xchacha20poly1305.go

    		panic("chacha20poly1305: bad nonce length passed to Seal")
    	}
    
    	// XChaCha20-Poly1305 technically supports a 64-bit counter, so there is no
    	// size limit. However, since we reuse the ChaCha20-Poly1305 implementation,
    	// the second half of the counter is not available. This is unlikely to be
    	// an issue because the cipher.AEAD API requires the entire message to be in
    	// memory, and the counter overflows at 256 GB.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:10:44 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/fuse_branchredirect.go

    //
    //	p:
    //	  v11 = Less64 <bool> v10 v8
    //	  If v11 goto b else u
    //	b: <- p ...
    //	  v17 = Leq64 <bool> v10 v8
    //	  If v17 goto s else o
    //
    // We can redirect p to s directly.
    //
    // The implementation here borrows the framework of the prove pass.
    //
    //	1, Traverse all blocks of function f to find If blocks.
    //	2,   For any If block b, traverse all its predecessors to find If blocks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/runtime/metrics.go

    // Copyright 2020 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.
    
    package runtime
    
    // Metrics implementation exported to runtime/metrics.
    
    import (
    	"internal/godebugs"
    	"unsafe"
    )
    
    var (
    	// metrics is a map of runtime/metrics keys to data used by the runtime
    	// to sample each metric's value. metricsInit indicates it has been
    	// initialized.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  4. src/syscall/syscall_dragonfly.go

    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    // syscall_bsd.go or syscall_unix.go.
    
    package syscall
    
    import (
    	"sync"
    	"unsafe"
    )
    
    func Syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err Errno)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:12:35 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. src/crypto/tls/cache.go

    // to the certificate in the cache is decremented. Once the number of references
    // reaches zero, the entry is evicted from the cache.
    //
    // The main difference between this implementation and CRYPTO_BUFFER_POOL is that
    // CRYPTO_BUFFER_POOL is a more  generic structure which supports blobs of data,
    // rather than specific structures. Since we only care about x509.Certificates,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 23:56:41 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. src/math/trig_reduce.go

    const reduceThreshold = 1 << 29
    
    // trigReduce implements Payne-Hanek range reduction by Pi/4
    // for x > 0. It returns the integer part mod 8 (j) and
    // the fractional part (z) of x / (Pi/4).
    // The implementation is based on:
    // "ARGUMENT REDUCTION FOR HUGE ARGUMENTS: Good to the Last Bit"
    // K. C. Ng et al, March 24, 1992
    // The simulated multi-precision calculation of x*B uses 64-bit integer arithmetic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. src/runtime/preempt.go

    // next synchronous safe-point, the runtime poisons the goroutine's
    // stack bound to a value that will cause the next stack bound check
    // to fail and enter the stack growth implementation, which will
    // detect that it was actually a preemption and redirect to preemption
    // handling.
    //
    // Preemption at asynchronous safe-points is implemented by suspending
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p224_sqrt.go

    func p224SqrtCandidate(r, x *fiat.P224Element) {
    	// Since p = 1 mod 4, we can't use the exponentiation by (p + 1) / 4 like
    	// for the other primes. Instead, implement a variation of Tonelli–Shanks.
    	// The constant-time implementation is adapted from Thomas Pornin's ecGFp5.
    	//
    	// https://github.com/pornin/ecgfp5/blob/82325b965/rust/src/field.rs#L337-L385
    
    	// p = q*2^n + 1 with q odd -> q = 2^128 - 1 and n = 96
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. src/crypto/internal/boring/LICENSE

     */
    
     Original SSLeay License
     -----------------------
    
    /* Copyright (C) 1995-1998 Eric Young (******@****.***)
     * All rights reserved.
     *
     * This package is an SSL implementation written
     * by Eric Young (******@****.***).
     * The implementation was written so as to conform with Netscapes SSL.
     *
     * This library is free for commercial and non-commercial use as long as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_s390x.s

    // license that can be found in the LICENSE file.
    
    //go:build linux && s390x && gc
    
    #include "textflag.h"
    
    //
    // System calls for s390x, Linux
    //
    
    // Just jump to package syscall's implementation for all these functions.
    // The runtime may know about them.
    
    TEXT ·Syscall(SB),NOSPLIT,$0-56
    	BR	syscall·Syscall(SB)
    
    TEXT ·Syscall6(SB),NOSPLIT,$0-80
    	BR	syscall·Syscall6(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top