Searched refs:updateBytes (Results 1 – 5 of 5) sorted by relevance
/libcore/ojluni/src/main/java/java/util/zip/ |
D | Adler32.java | 78 adler = updateBytes(adler, b, off, len); in update() 87 adler = updateBytes(adler, b, 0, b.length); in update() 114 adler = updateBytes(adler, buffer.array(), pos + buffer.arrayOffset(), rem); in update() 118 adler = updateBytes(adler, b, 0, b.length); in update() 138 private native static int updateBytes(int adler, byte[] b, int off, in updateBytes() method in Adler32
|
D | CRC32.java | 76 crc = updateBytes(crc, b, off, len); in update() 85 crc = updateBytes(crc, b, 0, b.length); in update() 111 crc = updateBytes(crc, buffer.array(), pos + buffer.arrayOffset(), rem); in update() 115 crc = updateBytes(crc, b, 0, b.length); in update() 135 private native static int updateBytes(int crc, byte[] b, int off, int len); in updateBytes() method in CRC32
|
/libcore/ojluni/src/main/native/ |
D | Adler32.c | 75 NATIVE_METHOD(Adler32, updateBytes, "(I[BII)I"),
|
D | java_util_zip_CRC32.c | 79 NATIVE_METHOD(CRC32, updateBytes, "(I[BII)I"),
|
/libcore/ojluni/src/main/java/java/sql/ |
D | ResultSet.java | 1706 void updateBytes(int columnIndex, byte x[]) throws SQLException; in updateBytes() method 2095 void updateBytes(String columnLabel, byte x[]) throws SQLException; in updateBytes() method
|