Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/util/zip/
DAdler32.java78 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
DCRC32.java76 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/
DAdler32.c75 NATIVE_METHOD(Adler32, updateBytes, "(I[BII)I"),
Djava_util_zip_CRC32.c79 NATIVE_METHOD(CRC32, updateBytes, "(I[BII)I"),
/libcore/ojluni/src/main/java/java/sql/
DResultSet.java1706 void updateBytes(int columnIndex, byte x[]) throws SQLException; in updateBytes() method
2095 void updateBytes(String columnLabel, byte x[]) throws SQLException; in updateBytes() method