Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for multiples (7.53 sec)

  1. src/crypto/internal/nistec/p256_asm.go

    }
    
    // p256AffineTable is a table of the first 32 multiples of a point. Points are
    // stored at an index offset of -1 like in p256Table, and [0]P is not stored.
    type p256AffineTable [32]p256AffinePoint
    
    // p256Precomputed is a series of precomputed multiples of G, the canonical
    // generator. The first p256AffineTable contains multiples of G. The second one
    // multiples of [2⁶]G, the third one of [2¹²]G, and so on, where each successive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. src/crypto/cipher/gcm.go

    	}
    
    	var key [gcmBlockSize]byte
    	cipher.Encrypt(key[:], key[:])
    
    	g := &gcm{cipher: cipher, nonceSize: nonceSize, tagSize: tagSize}
    
    	// We precompute 16 multiples of |key|. However, when we do lookups
    	// into this table we'll be using bits from a field element and
    	// therefore the bits will be in the reverse order. So normally one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/crypto/aes/gcm_ppc64x.go

    type gcmAsm struct {
    	cipher *aesCipherAsm
    	// ks is the key schedule, the length of which depends on the size of
    	// the AES key.
    	ks []uint32
    	// productTable contains pre-computed multiples of the binary-field
    	// element used in GHASH.
    	productTable [256]byte
    	// nonceSize contains the expected size of the nonce, in bytes.
    	nonceSize int
    	// tagSize contains the size of the tag, in bytes.
    	tagSize int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/errors/wrap.go

    }
    
    // Is reports whether any error in err's tree matches target.
    //
    // The tree consists of err itself, followed by the errors obtained by repeatedly
    // calling its Unwrap() error or Unwrap() []error method. When err wraps multiple
    // errors, Is examines err followed by a depth-first traversal of its children.
    //
    // An error is considered to match a target if it is equal to that target or if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:04 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. src/crypto/internal/bigmod/nat.go

    			c2 := addMulVVW2048(&T[i], &mLimbs[0], Y)
    			T[n+i], c = bits.Add(c1, c2, c)
    		}
    		copy(x.reset(n).limbs, T[n:])
    		x.maybeSubtractModulus(choice(c), m)
    	}
    
    	return x
    }
    
    // addMulVVW multiplies the multi-word value x by the single-word value y,
    // adding the result to the multi-word value z and returning the final carry.
    // It can be thought of as one row of a pen-and-paper column multiplication.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/format.go

    		if check.pkgPathMap == nil {
    			check.pkgPathMap = make(map[string]map[string]bool)
    			check.seenPkgMap = make(map[*Package]bool)
    			check.markImports(check.pkg)
    		}
    		// If the same package name was used by multiple packages, display the full path.
    		if len(check.pkgPathMap[pkg.name]) > 1 {
    			return strconv.Quote(pkg.path)
    		}
    		return pkg.name
    	}
    	return ""
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    	buf *bytes.Buffer
    	id1 cache.ActionID
    	id2 cache.ActionID
    }
    
    // stdoutMu and lockedStdout provide a locked standard output
    // that guarantees never to interlace writes from multiple
    // goroutines, so that we can have multiple JSON streams writing
    // to a lockedStdout simultaneously and know that events will
    // still be intelligible.
    var stdoutMu sync.Mutex
    
    type lockedStdout struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/init.go

    	// from updating go.mod and go.sum or reporting errors when updates are
    	// needed. A package should set this if it would cause go.mod to be written
    	// multiple times (for example, 'go get' calls LoadPackages multiple times) or
    	// if it needs some other operation to be successful before go.mod and go.sum
    	// can be written (for example, 'go mod download' must download modules before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	Int(name string, def int, usage string) *int
    	Float64(name string, def float64, usage string) *float64
    	String(name string, def string, usage string) *string
    
    	// StringList is similar to String but allows multiple values for a
    	// single flag
    	StringList(name string, def string, usage string) *[]*string
    
    	// ExtraUsage returns any additional text that should be printed after the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/named.go

    import (
    	"cmd/compile/internal/syntax"
    	"strings"
    	"sync"
    	"sync/atomic"
    )
    
    // Type-checking Named types is subtle, because they may be recursively
    // defined, and because their full details may be spread across multiple
    // declarations (via methods). For this reason they are type-checked lazily,
    // to avoid information being accessed before it is complete.
    //
    // Conceptually, it is helpful to think of named types as having two distinct
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top