Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for hashLength65Plus (0.12 seconds)

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

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

          } else {
            return hashLength17to32(bytes, offset, length);
          }
        } else if (length <= 64) {
          return hashLength33To64(bytes, offset, length);
        } else {
          return hashLength65Plus(bytes, offset, length);
        }
      }
    
      private static long shiftMix(long val) {
        return val ^ (val >>> 47);
      }
    
      private static long hashLength16(long u, long v, long mul) {
        long a = (u ^ v) * mul;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Aug 11 19:31:30 GMT 2025
    - 7.6K bytes
    - Click Count (0)
Back to Top