Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ByteBufferHasher (0.26 sec)

  1. guava/src/com/google/common/hash/AbstractNonStreamingHashFunction.java

        return newHasher(input.remaining()).putBytes(input).hash();
      }
    
      /** In-memory ByteBuffer-based implementation of {@link Hasher}. */
      private final class ByteBufferHasher extends AbstractHasher {
        ByteBuffer buffer;
    
        ByteBufferHasher(int expectedInputSize) {
          this.buffer = ByteBuffer.allocate(expectedInputSize).order(ByteOrder.LITTLE_ENDIAN);
        }
    
        /**
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 04 15:39:10 UTC 2025
    - 4.8K bytes
    - Viewed (0)
Back to top