jdk/src/java.base/share/classes/java/util/zip/Adler32.java
changeset 45924 8bbd04c0791e
parent 45434 4582657c7260
equal deleted inserted replaced
45923:00a75e0998d1 45924:8bbd04c0791e
   134     private static native int updateBytes(int adler, byte[] b, int off,
   134     private static native int updateBytes(int adler, byte[] b, int off,
   135                                           int len);
   135                                           int len);
   136     @HotSpotIntrinsicCandidate
   136     @HotSpotIntrinsicCandidate
   137     private static native int updateByteBuffer(int adler, long addr,
   137     private static native int updateByteBuffer(int adler, long addr,
   138                                                int off, int len);
   138                                                int off, int len);
       
   139 
       
   140     static {
       
   141         ZipUtils.loadLibrary();
       
   142     }
   139 }
   143 }