Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ByteBufferBackingArray (1 sec)

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

          for (int remaining = b.remaining(); remaining > 0; remaining--) {
            update(b.get());
          }
        }
      }
    
      /** Updates the sink with the given number of bytes from the buffer. */
      @SuppressWarnings("ByteBufferBackingArray") // We created the array with ByteBuffer.allocate().
      @CanIgnoreReturnValue
      private Hasher update(ByteBuffer scratch, int bytes) {
        try {
          update(scratch.array(), 0, bytes);
        } finally {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 12:40:17 UTC 2025
    - 3.9K bytes
    - Viewed (0)
Back to top