Searched defs:adler (Results  1 – 6 of 6) 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 | 47     private int adler = 1;  field in Adler32 146     private static native int update(int adler, int b);  in update() 149     private static native int updateBytes(int adler, byte[] b, int off,  in updateBytes() 152     private static native int updateByteBuffer(int adler, long addr,  in updateByteBuffer()
  | 
| /libcore/ojluni/src/main/native/ | 
| D | Adler32.c | 35 Java_java_util_zip_Adler32_update(JNIEnv *env, jclass cls, jint adler, jint b)  in Java_java_util_zip_Adler32_update() 44 Java_java_util_zip_Adler32_updateBytes(JNIEnv *env, jclass cls, jint adler,  in Java_java_util_zip_Adler32_updateBytes() 56 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
  |