Home
last modified time | relevance | path

Searched refs:CRC32BytesUsingUpdateInt (Results 1 – 1 of 1) sorted by relevance

/art/test/580-crc32/src/
DMain.java40 public static long CRC32BytesUsingUpdateInt(int... values) { in CRC32BytesUsingUpdateInt() method in Main
119 assertEqual(0xFF41D912L, CRC32BytesUsingUpdateInt(0, 0, 0)); in TestCRC32Update()
121 CRC32BytesUsingUpdateInt(0x0100, 0x010000, 0x01000000)); in TestCRC32Update()
123 CRC32BytesUsingUpdateInt(0xff00, 0xffff00, 0xffffff00)); in TestCRC32Update()
125 CRC32BytesUsingUpdateInt(0x1200, 0x123400, 0x12345600)); in TestCRC32Update()
127 assertEqual(0x909FB2F2L, CRC32BytesUsingUpdateInt(1, 1, 1)); in TestCRC32Update()
129 CRC32BytesUsingUpdateInt(0x0101, 0x010001, 0x01000001)); in TestCRC32Update()
131 CRC32BytesUsingUpdateInt(0xff01, 0xffff01, 0xffffff01)); in TestCRC32Update()
133 CRC32BytesUsingUpdateInt(0x1201, 0x123401, 0x12345601)); in TestCRC32Update()
135 assertEqual(0xE33A9F71L, CRC32BytesUsingUpdateInt(0x0f, 0x0f, 0x0f)); in TestCRC32Update()
[all …]