Searched defs:updateBytes (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/main/java/java/util/zip/
H A DAdler32.java78 adler = updateBytes(adler, b, off, len);
87 adler = updateBytes(adler, b, 0, b.length);
114 adler = updateBytes(adler, buffer.array(), pos + buffer.arrayOffset(), rem);
118 adler = updateBytes(adler, b, 0, b.length);
138 private native static int updateBytes(int adler, byte[] b, int off, method in class:Adler32
H A DCRC32.java76 crc = updateBytes(crc, b, off, len);
85 crc = updateBytes(crc, b, 0, b.length);
111 crc = updateBytes(crc, buffer.array(), pos + buffer.arrayOffset(), rem);
115 crc = updateBytes(crc, b, 0, b.length);
135 private native static int updateBytes(int crc, byte[] b, int off, int len); method in class:CRC32
/libcore/ojluni/src/main/java/java/sql/
H A DResultSet.java1706 void updateBytes(int columnIndex, byte x[]) throws SQLException; method in interface:ResultSet
2095 void updateBytes(String columnLabel, byte x[]) throws SQLException; method in interface:ResultSet

Completed in 87 milliseconds