Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 185 for 32 (0.2 sec)

  1. android/guava-tests/test/com/google/common/hash/HashingTest.java

      }
    
      public void testMurmur3_32() {
        HashTestUtils.check2BitAvalanche(Hashing.murmur3_32(), 250, 0.20);
        HashTestUtils.checkAvalanche(Hashing.murmur3_32(), 250, 0.17);
        HashTestUtils.checkNo2BitCharacteristics(Hashing.murmur3_32());
        HashTestUtils.checkNoFunnels(Hashing.murmur3_32());
        HashTestUtils.assertInvariants(Hashing.murmur3_32());
        assertEquals("Hashing.murmur3_32(0)", Hashing.murmur3_32().toString());
      }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 26.5K bytes
    - Viewed (0)
  2. cmd/encryption-v1_test.go

    				t.Errorf("Case %d: unexpected err: %v", i, err)
    			}
    			rLen := pkgSz + 32
    			if test.decSz < pkgSz {
    				rLen = test.decSz + 32
    			}
    			if skip != 0 || sn != 0 || ps != 0 || o != 0 || l != rLen {
    				t.Errorf("Case %d: test failed: %d %d %d %d %d", i, o, l, skip, sn, ps)
    			}
    		}
    
    		kb32 := int64(32) * humanize.KiByte
    		if test.decSz >= (64+32)*humanize.KiByte {
    			// Skip the first 32Kib, and read the next 64Kib
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Sep 24 04:17:08 GMT 2022
    - 19.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/hash/HashingTest.java

      }
    
      public void testMurmur3_32() {
        HashTestUtils.check2BitAvalanche(Hashing.murmur3_32(), 250, 0.20);
        HashTestUtils.checkAvalanche(Hashing.murmur3_32(), 250, 0.17);
        HashTestUtils.checkNo2BitCharacteristics(Hashing.murmur3_32());
        HashTestUtils.checkNoFunnels(Hashing.murmur3_32());
        HashTestUtils.assertInvariants(Hashing.murmur3_32());
        assertEquals("Hashing.murmur3_32(0)", Hashing.murmur3_32().toString());
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 26.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/Hashing.java

       * algorithm, x86 variant</a> (little-endian variant), using the given seed value.
       *
       * <p>The exact C++ equivalent is the MurmurHash3_x86_32 function (Murmur3A).
       *
       * <p>This method is called {@code murmur3_32_fixed} because it fixes a bug in the {@code
       * HashFunction} returned by the original {@code murmur3_32} method.
       *
       * @since 31.0
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 09 00:37:15 GMT 2024
    - 29.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/Murmur3_32HashFunction.java

              if (supplementaryPlaneFix) { // bug compatibility: earlier versions did not have this add
                shift += 32;
              }
              len += 4;
            }
    
            if (shift >= 32) {
              int k1 = mixK1((int) buffer);
              h1 = mixH1(h1, k1);
              buffer = buffer >>> 32;
              shift -= 32;
            }
          }
    
          int k1 = mixK1((int) buffer);
          h1 ^= k1;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Jun 15 20:59:00 GMT 2022
    - 11.9K bytes
    - Viewed (0)
  6. api/go1.9.txt

    pkg math/bits (freebsd-386), const UintSize = 32
    pkg math/bits (freebsd-386-cgo), const UintSize = 32
    pkg math/bits (freebsd-amd64), const UintSize = 64
    pkg math/bits (freebsd-amd64-cgo), const UintSize = 64
    pkg math/bits (freebsd-arm), const UintSize = 32
    pkg math/bits (freebsd-arm-cgo), const UintSize = 32
    pkg math/bits (linux-386), const UintSize = 32
    pkg math/bits (linux-386-cgo), const UintSize = 32
    pkg math/bits (linux-amd64), const UintSize = 64
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Oct 04 20:20:20 GMT 2021
    - 10.7K bytes
    - Viewed (0)
  7. api/go1.19.txt

    pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_16 R_LARCH #46229
    pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_16_S2 = 42 #46229
    pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_16_S2 R_LARCH #46229
    pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_5 = 38 #46229
    pkg debug/elf, const R_LARCH_SOP_POP_32_S_10_5 R_LARCH #46229
    pkg debug/elf, const R_LARCH_SOP_POP_32_S_5_20 = 43 #46229
    pkg debug/elf, const R_LARCH_SOP_POP_32_S_5_20 R_LARCH #46229
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Viewed (1)
  8. android/guava/src/com/google/common/primitives/UnsignedInts.java

       * value}.
       *
       * @param value any {@code long} value
       * @return {@code 2^32 - 1} if {@code value >= 2^32}, {@code 0} if {@code value <= 0}, and {@code
       *     value} cast to {@code int} otherwise
       * @since 21.0
       */
      public static int saturatedCast(long value) {
        if (value <= 0) {
          return 0;
        } else if (value >= (1L << 32)) {
          return -1;
        } else {
          return (int) value;
        }
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 13.4K bytes
    - Viewed (0)
  9. internal/crypto/metadata_test.go

    			MetaIV: base64.StdEncoding.EncodeToString(make([]byte, 32)), MetaAlgorithm: "", MetaSealedKeyS3: "", MetaKeyID: "", MetaDataEncryptionKey: "",
    		},
    		DataKey: []byte{}, KeyID: "", SealedKey: SealedKey{},
    	}, // 6
    	{
    		ExpectedErr: Errorf("The internal sealed key for SSE-S3 is invalid"),
    		Metadata: map[string]string{
    			MetaIV: base64.StdEncoding.EncodeToString(make([]byte, 32)), MetaAlgorithm: SealAlgorithm, MetaSealedKeyS3: "",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Feb 02 00:13:57 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  10. cmd/encryption-v1.go

    	SSECustomerKeySize = 32
    
    	// SSEIVSize is the size of the IV data
    	SSEIVSize = 32 // 32 bytes
    
    	// SSEDAREPackageBlockSize - SSE dare package block size.
    	SSEDAREPackageBlockSize = 64 * 1024 // 64KiB bytes
    
    	// SSEDAREPackageMetaSize - SSE dare package meta padding bytes.
    	SSEDAREPackageMetaSize = 32 // 32 bytes
    
    )
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 36.5K bytes
    - Viewed (0)
Back to top