Lines Matching refs:buf
348 ByteBuffer buf = ByteBuffer.wrap(bytes, 0, off + len); in CRC32ByteBuffer() local
349 buf.position(off); in CRC32ByteBuffer()
351 crc32.update(buf); in CRC32ByteBuffer()
416 ByteBuffer buf = ByteBuffer.allocateDirect(total_len).put(bytes, 0, total_len); in CRC32DirectByteBuffer() local
417 buf.position(off); in CRC32DirectByteBuffer()
419 crc32.update(buf); in CRC32DirectByteBuffer()
424 ByteBuffer buf = ByteBuffer.allocateDirect(bytes.length).put(bytes); in CRC32ByteAndDirectByteBuffer() local
425 buf.position(0); in CRC32ByteAndDirectByteBuffer()
428 crc32.update(buf); in CRC32ByteAndDirectByteBuffer()
433 ByteBuffer buf = ByteBuffer.allocateDirect(bytes.length).put(bytes); in CRC32DirectByteBufferAndByte() local
434 buf.position(0); in CRC32DirectByteBufferAndByte()
436 crc32.update(buf); in CRC32DirectByteBufferAndByte()