Searched refs:CRC32ByteArrayThrowsAIOOBE (Results 1 – 1 of 1) sorted by relevance
/art/test/580-crc32/src/ |
D | Main.java | 185 private static boolean CRC32ByteArrayThrowsAIOOBE(byte[] bytes, int off, int len) { in CRC32ByteArrayThrowsAIOOBE() method in Main 233 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() [all …]
|