Lines Matching refs:CRC32ByteArrayThrowsAIOOBE
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()
242 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {0}, 0, 10)); in TestCRC32UpdateBytes()
243 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {}, 10, 10)); in TestCRC32UpdateBytes()
244 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {0, 0, 0, 0}, 2, 3)); in TestCRC32UpdateBytes()
245 assertEqual(true, CRC32ByteArrayThrowsAIOOBE(new byte[] {0, 0, 0, 0}, 3, 2)); in TestCRC32UpdateBytes()