Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for hashLength0to16 (0.08 seconds)

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

      }
    
      // End of public functions.
    
      @VisibleForTesting
      static long fingerprint(byte[] bytes, int offset, int length) {
        if (length <= 32) {
          if (length <= 16) {
            return hashLength0to16(bytes, offset, length);
          } else {
            return hashLength17to32(bytes, offset, length);
          }
        } else if (length <= 64) {
          return hashLength33To64(bytes, offset, length);
        } else {
    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