Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for shiftMix (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

          long loaded = load64(bytes, offset + i);
          long data = shiftMix(loaded * mul) * mul;
          hash ^= data;
          hash *= mul;
        }
    
        if (lengthRemainder != 0) {
          long data = load64Safely(bytes, offset + lengthAligned, lengthRemainder);
          hash ^= data;
          hash *= mul;
        }
    
        hash = shiftMix(hash) * mul;
        hash = shiftMix(hash);
        return hash;
      }
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Aug 11 19:31:30 GMT 2025
    - 6.5K bytes
    - Click Count (0)
Back to Top