Searched defs:adler (Results 1 – 7 of 7) sorted by relevance
/libcore/ojluni/annotations/hiddenapi/java/util/zip/ |
D | Adler32.java | 62 private static native int update(int adler, int b); in update() 64 private static native int updateBytes(int adler, byte[] b, int off, int len); in updateBytes() 66 private static native int updateByteBuffer(int adler, long addr, int off, int len); in updateByteBuffer() 68 private int adler = 1; // 0x1 field in Adler32
|
D | CRC32.java | 66 private static native int updateByteBuffer(int adler, long addr, int off, int len); in updateByteBuffer()
|
/libcore/ojluni/src/main/java/java/util/zip/ |
D | Adler32.java | 45 private int adler = 1; field in Adler32 137 private native static int update(int adler, int b); in update() 138 private native static int updateBytes(int adler, byte[] b, int off, in updateBytes() 140 private native static int updateByteBuffer(int adler, long addr, in updateByteBuffer()
|
D | CRC32.java | 137 private native static int updateByteBuffer(int adler, long addr, in updateByteBuffer()
|
/libcore/ojluni/src/main/native/ |
D | Adler32.c | 42 Java_java_util_zip_Adler32_update(JNIEnv *env, jclass cls, jint adler, jint b) in Java_java_util_zip_Adler32_update() 51 Java_java_util_zip_Adler32_updateBytes(JNIEnv *env, jclass cls, jint adler, in Java_java_util_zip_Adler32_updateBytes() 63 Java_java_util_zip_Adler32_updateByteBuffer(JNIEnv *env, jclass cls, jint adler, in Java_java_util_zip_Adler32_updateByteBuffer()
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | ChecksumBenchmark.java | 25 Adler32 adler = new Adler32(); in timeAdler_block() local 31 Adler32 adler = new Adler32(); in timeAdler_byte() local
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
D | OldAndroidChecksumTest.java | 41 Adler32 adler = new Adler32(); in adler32Test() local 84 Adler32 adler = new Adler32(); in wrongChecksumWithAdler32Test() local
|