Searched refs:CRC32DirectByteBufferAndByte (Results 1 – 1 of 1) sorted by relevance
/art/test/580-crc32/src/ |
D | Main.java | 432 private static long CRC32DirectByteBufferAndByte(byte[] bytes, int value) { in CRC32DirectByteBufferAndByte() method in Main 480 CRC32DirectByteBufferAndByte(new byte[] {0, 0}, 0)); in TestCRC32UpdateDirectByteBuffer() 482 CRC32DirectByteBufferAndByte(new byte[] {1, 1}, 1)); in TestCRC32UpdateDirectByteBuffer() 484 CRC32DirectByteBufferAndByte(new byte[] {0x0f, 0x0f}, 0x0f)); in TestCRC32UpdateDirectByteBuffer() 486 CRC32DirectByteBufferAndByte(new byte[] {-1, -1}, -1)); in TestCRC32UpdateDirectByteBuffer() 488 CRC32DirectByteBufferAndByte(new byte[] {1, 2}, 3)); in TestCRC32UpdateDirectByteBuffer() 491 CRC32DirectByteBufferAndByte(new byte[] {0, -1, Byte.MIN_VALUE}, Byte.MAX_VALUE)); in TestCRC32UpdateDirectByteBuffer()
|