Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for x64 (0.14 sec)

  1. android/guava/src/com/google/common/hash/Hashing.java

       * Returns a hash function implementing the <a
       * href="https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp">128-bit murmur3
       * algorithm, x64 variant</a> (little-endian variant), using the given seed value.
       *
       * <p>The exact C++ equivalent is the MurmurHash3_x64_128 function (Murmur3F).
       */
      public static HashFunction murmur3_128(int seed) {
        return new Murmur3_128HashFunction(seed);
      }
    
      /**
    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)
Back to top