Home
last modified time | relevance | path

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

/aosp12/art/test/580-crc32/src/
H A DMain.java233 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {}, -1, 0)); in TestCRC32UpdateBytes()
234 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {0}, -1, 1)); in TestCRC32UpdateBytes()
235 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {0}, 0, -1)); in TestCRC32UpdateBytes()
236 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {}, 0, -1)); in TestCRC32UpdateBytes()
237 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {}, 1, 0)); in TestCRC32UpdateBytes()
238 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {}, -1, 1)); in TestCRC32UpdateBytes()
239 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {}, 1, -1)); in TestCRC32UpdateBytes()
240 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {}, 0, 1)); in TestCRC32UpdateBytes()
241 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {}, 0, 10)); in TestCRC32UpdateBytes()
242 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {0}, 0, 10)); in TestCRC32UpdateBytes()
[all …]