Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Collins (0.15 sec)

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

        }
    
        @Override
        protected HashCode makeHash() {
          if (!finished) {
            // processRemaining does teardown we always want to do -- the folding together of the four
            // rolling CRCs.  So we call it on an empty ByteBuffer if we didn't already.
            processRemaining(EMPTY);
          }
          return HashCode.fromInt(~crc0);
        }
    
        static final int[] BYTE_TABLE = {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 20 18:43:59 GMT 2021
    - 21.3K bytes
    - Viewed (0)
Back to top