Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,264 for multiplied (0.16 sec)

  1. src/internal/abi/stack.go

    // license that can be found in the LICENSE file.
    
    package abi
    
    const (
    	// StackNosplitBase is the base maximum number of bytes that a chain of
    	// NOSPLIT functions can use.
    	//
    	// This value must be multiplied by the stack guard multiplier, so do not
    	// use it directly. See runtime/stack.go:stackNosplit and
    	// cmd/internal/objabi/stack.go:StackNosplit.
    	StackNosplitBase = 800
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/internal/poly1305/sum_s390x.s

    //                coefficients for first iteration
    //
    // So in this case we would have two iterations. In the first
    // both lanes are multiplied by r². In the second only the
    // first lane is multiplied by r² and the second lane is
    // instead multiplied by r. This gives use the odd and even
    // powers of r that we need from the original equation.
    //
    // Notation:
    //
    //   h - accumulator
    //   r - key
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/ytab.go

    }
    
    // Returns true if yt is compatible with args.
    //
    // Elements from args and yt.args are used
    // to index ycover table like `ycover[args[i]+yt.args[i]]`.
    // This means that args should contain values that already
    // multiplied by Ymax.
    func (yt *ytab) match(args []int) bool {
    	// Trailing Yxxx check is required to avoid a case
    	// where shorter arg list is matched.
    	// If we had exact yt.args length, it could be `yt.argc != len(args)`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 06 15:40:03 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  4. pkg/apis/authentication/types.go

    	// It can be repeated multiplied times for multiple groups.
    	ImpersonateGroupHeader = "Impersonate-Group"
    
    	// ImpersonateUserExtraHeaderPrefix is a prefix for any header used to impersonate an entry in the
    	// extra map[string][]string for user.Info.  The key will be every after the prefix.
    	// It can be repeated multiplied times for multiple map keys and the same key can be repeated multiple
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:33:37 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. hack/serve-prom-scrapes.sh

    # <timestamp>.scrape
    # where <timestamp> is seconds since Jan 1, 1970 UTC.
    # Each such file is taken to be a scrape that lacks timestamps,
    # and the timestamp from the filename is multiplied by the necessary 1000
    # and added to the data in that file.
    
    # This requires an `nc` command that this script knows how to wrangle.
    
    if (( $# != 2 )); then
        echo "Usage: $0 port_num scrapes_dir" >&2
        exit 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 06:33:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. src/hash/crc32/crc32_s390x.s

    // intermediate results with a single VECTOR GALOIS FIELD MULTIPLY instruction.
    // The rightmost doubleword can be 0 to prevent contribution to the result or
    // can be multiplied by 1 to perform an XOR without the need for a separate
    // VECTOR EXCLUSIVE OR instruction.
    //
    // The polynomials used are bit-reflected:
    //
    //            IEEE: P'(x) = 0x0edb88320
    //      Castagnoli: P'(x) = 0x082f63b78
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  7. hack/run-prometheus-on-etcd-scrapes.sh

    # files whose name is of the form
    # <timestamp>.scrape
    # where <timestamp> is seconds since Jan 1, 1970 UTC.
    # Each such file is taken to be a scrape that lacks timestamps,
    # and the timestamp from the filename is multiplied by the necessary 1000
    # and added to the data in that file.
    
    # This requires a:
    # - `docker run` command
    # - an `ip` or `ifconfig` command that this script knows how to wrangle
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 08 20:28:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  8. src/crypto/rand/util.go

    		bytes[0] &= uint8(int(1<<b) - 1)
    		// Don't let the value be too small, i.e, set the most significant two bits.
    		// Setting the top two bits, rather than just the top bit,
    		// means that when two of these values are multiplied together,
    		// the result isn't ever one bit short.
    		if b >= 2 {
    			bytes[0] |= 3 << (b - 2)
    		} else {
    			// Here b==1, because b cannot be zero.
    			bytes[0] |= 1
    			if len(bytes) > 1 {
    				bytes[1] |= 0x80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authentication/v1/types.go

    	// extra map[string][]string for user.Info.  The key will be every after the prefix.
    	// It can be repeated multiplied times for multiple map keys and the same key can be repeated multiple
    	// times to have multiple elements in the slice under a single key
    	ImpersonateUserExtraHeaderPrefix = "Impersonate-Extra-"
    )
    
    // +genclient
    // +genclient:nonNamespaced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/math/gamma.go

    	-2.29549961613378126380e-04,
    	-2.68132617805781232825e-03,
    	3.47222221605458667310e-03,
    	8.33333333333482257126e-02,
    }
    
    // Gamma function computed by Stirling's formula.
    // The pair of results must be multiplied together to get the actual answer.
    // The multiplication is left to the caller so that, if careful, the caller can avoid
    // infinity for 172 <= x <= 180.
    // The polynomial is valid for 33 <= x <= 172; larger values are only used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top