Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for sumAsm (0.2 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_generic.go

    		//           t4    t3    t2    t1    t0      <-- final result in 64-bit limbs
    		//
    		// The main difference from pen-and-paper multiplication is that we do
    		// carry propagation in a separate step, as if we wrote two digit sums
    		// at first (the 128-bit limbs), and then carried the tens all at once.
    
    		h0r0 := mul64(h0, r0)
    		h1r0 := mul64(h1, r0)
    		h2r0 := mul64(h2, r0)
    		h0r1 := mul64(h0, r1)
    		h1r1 := mul64(h1, r1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/request/webhook_duration.go

    	// serialized raw bytes to the http ResponseWriter object (via the
    	// Write method) associated with the request.
    	// The Write method can be invoked multiple times, so we use a
    	// latency tracker that sums up the duration from each call.
    	ResponseWriteTracker DurationTracker
    
    	// DecodeTracker is used to track latency incurred inside the function
    	// that takes an object returned from the underlying storage layer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 22:15:37 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_download.txt

    ! go mod download m@latest
    stderr '^go: m@latest: malformed module path "m": missing dot in first path element$'
    
    # download without arguments updates go.mod and go.sum after loading the
    # build list, but does not save sums for downloaded zips.
    cd update
    cp go.mod.orig go.mod
    ! exists go.sum
    go mod download
    cmp go.mod.update go.mod
    cmp go.sum.update go.sum
    cp go.mod.orig go.mod
    rm go.sum
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 20:42:35 UTC 2021
    - 8.5K bytes
    - Viewed (0)
  4. src/hash/maphash/smhasher_test.go

    	// More precisely, we did N = k.bits() * hashSize experiments where
    	// each is the sum of REP coin flips. We want to find bounds on the
    	// sum of coin flips such that a truly random experiment would have
    	// all sums inside those bounds with 99% probability.
    	N := n * hashSize
    	var c float64
    	// find c such that Prob(mean-c*stddev < x < mean+c*stddev)^N > .9999
    	for c = 0.0; math.Pow(math.Erf(c/math.Sqrt(2)), float64(N)) < .9999; c += .1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    			if err != nil || deprecation == "" {
    				return
    			}
    			deprecations[i].message = modload.ShortMessage(deprecation, "")
    		})
    	}
    
    	// Load sums for updated modules that had sums before. When we update a
    	// module, we may update another module in the build list that provides a
    	// package in 'all' that wasn't loaded as part of this 'go get' command.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        const fs = Math.max(MIN_FONT_SIZE, FONT_SIZE * (avail / width));
        t.style.fontSize = fs + 'pt';
        t.innerText = text;
      }
    
      // totalValue returns the positive and negative sums of the Values of stacks
      // listed in places.
      function totalValue(places) {
        const seen = new Set();
        let pos = 0;
        let neg = 0;
        for (const place of places) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/runtime/hash_test.go

    	// More precisely, we did N = k.bits() * hashSize experiments where
    	// each is the sum of REP coin flips. We want to find bounds on the
    	// sum of coin flips such that a truly random experiment would have
    	// all sums inside those bounds with 99% probability.
    	N := n * hashSize
    	var c float64
    	// find c such that Prob(mean-c*stddev < x < mean+c*stddev)^N > .9999
    	for c = 0.0; math.Pow(math.Erf(c/math.Sqrt(2)), float64(N)) < .9999; c += .1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. src/crypto/md5/md5_test.go

    // Tests for unmarshaling hashes that have hashed a large amount of data
    // The initial hash generation is omitted from the test, because it takes a long time.
    // The test contains some already-generated states, and their expected sums
    // Tests a problem that is outlined in GitHub issue #29541
    // The problem is triggered when an amount of data has been hashed for which
    // the data length has a 1 in the 32nd bit. When casted to int, this changes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 23 16:54:46 UTC 2021
    - 17.4K bytes
    - Viewed (0)
  9. src/encoding/binary/binary.go

    }
    
    var structSize sync.Map // map[reflect.Type]int
    
    // dataSize returns the number of bytes the actual data represented by v occupies in memory.
    // For compound structures, it sums the sizes of the elements. Thus, for instance, for a slice
    // it returns the length of the slice times the element size and does not count the memory
    // occupied by the header. If the type of v is not acceptable, dataSize returns -1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:29:31 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. src/crypto/sha1/sha1_test.go

    // Tests for unmarshaling hashes that have hashed a large amount of data
    // The initial hash generation is omitted from the test, because it takes a long time.
    // The test contains some already-generated states, and their expected sums
    // Tests a problem that is outlined in GitHub issue #29543
    // The problem is triggered when an amount of data has been hashed for which
    // the data length has a 1 in the 32nd bit. When casted to int, this changes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 18.3K bytes
    - Viewed (0)
Back to top