Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for 2n (0.21 sec)

  1. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndECDSAGiven

    00000030  5f 14 af 0d f8 f1 08 e3  ca c1 8e ad 4b a5 a0 09  |_...........K...|
    00000040  b8 a0 4f bf e4 0f 93 a9  4a 35 35 26 22 d7 04 03  |..O.....J55&"...|
    00000050  70 95 4f 80 df d4 47 5b  21 14 27 d6 17 ea 32 6e  |p.O...G[!.'...2n|
    00000060  ea 3a ca 31 7c f2 d1 46  a2 ef 47 b9 16 d6 18 d5  |.:.1|..F..G.....|
    00000070  17 35 71 9d 14 37 63 cd  e1 c6 ff 3d ec a5 d8 53  |.5q..7c....=...S|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    // storage can use this function to compute where to read or write
    // a given hash.
    func StoredHashIndex(level int, n int64) int64 {
    	// Level L's n'th hash is written right after level L+1's 2n+1'th hash.
    	// Work our way down to the level 0 ordering.
    	// We'll add back the original level count at the end.
    	for l := level; l > 0; l-- {
    		n = 2*n + 1
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. src/crypto/internal/bigmod/nat.go

    			_ = T[n+i] // bounds check elimination hint
    
    			// Step 1 (T = a × b) is computed as a large pen-and-paper column
    			// multiplication of two numbers with n base-2^_W digits. If we just
    			// wanted to produce 2n-wide T, we would do
    			//
    			//   for i := 0; i < n; i++ {
    			//       d := bLimbs[i]
    			//       T[n+i] = addMulVVW(T[i:n+i], aLimbs, d)
    			//   }
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      //          sign-and-magnitude) is represented by 1;
      //   0      is represented by N; and
      //   N - 1  (the biggest number representable using
      //          sign-and-magnitude) is represented by 2N - 1.
      //
      // Read http://en.wikipedia.org/wiki/Signed_number_representations
      // for more details on signed number representations.
      static Bits SignAndMagnitudeToBiased(const Bits &sam) {
        if (kSignBitMask & sam) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      //          sign-and-magnitude) is represented by 1;
      //   0      is represented by N; and
      //   N - 1  (the biggest number representable using
      //          sign-and-magnitude) is represented by 2N - 1.
      //
      // Read http://en.wikipedia.org/wiki/Signed_number_representations
      // for more details on signed number representations.
      static Bits SignAndMagnitudeToBiased(const Bits &sam) {
        if (kSignBitMask & sam) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top