|
|
|
@ -16,11 +16,11 @@ package com.fr.third.net.jpountz.lz4;
|
|
|
|
|
* limitations under the License. |
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
import static net.jpountz.lz4.LZ4Constants.COPY_LENGTH; |
|
|
|
|
import static net.jpountz.lz4.LZ4Constants.LAST_LITERALS; |
|
|
|
|
import static net.jpountz.lz4.LZ4Constants.ML_BITS; |
|
|
|
|
import static net.jpountz.lz4.LZ4Constants.ML_MASK; |
|
|
|
|
import static net.jpountz.lz4.LZ4Constants.RUN_MASK; |
|
|
|
|
import static com.fr.third.net.jpountz.lz4.LZ4Constants.COPY_LENGTH; |
|
|
|
|
import static com.fr.third.net.jpountz.lz4.LZ4Constants.LAST_LITERALS; |
|
|
|
|
import static com.fr.third.net.jpountz.lz4.LZ4Constants.ML_BITS; |
|
|
|
|
import static com.fr.third.net.jpountz.lz4.LZ4Constants.ML_MASK; |
|
|
|
|
import static com.fr.third.net.jpountz.lz4.LZ4Constants.RUN_MASK; |
|
|
|
|
import static com.fr.third.net.jpountz.util.UnsafeUtils.readByte; |
|
|
|
|
import static com.fr.third.net.jpountz.util.UnsafeUtils.readInt; |
|
|
|
|
import static com.fr.third.net.jpountz.util.UnsafeUtils.readLong; |
|
|
|
@ -29,7 +29,7 @@ import static com.fr.third.net.jpountz.util.UnsafeUtils.writeByte;
|
|
|
|
|
import static com.fr.third.net.jpountz.util.UnsafeUtils.writeInt; |
|
|
|
|
import static com.fr.third.net.jpountz.util.UnsafeUtils.writeLong; |
|
|
|
|
import static com.fr.third.net.jpountz.util.UnsafeUtils.writeShort; |
|
|
|
|
import static net.jpountz.util.Utils.NATIVE_BYTE_ORDER; |
|
|
|
|
import static com.fr.third.net.jpountz.util.Utils.NATIVE_BYTE_ORDER; |
|
|
|
|
|
|
|
|
|
import java.nio.ByteOrder; |
|
|
|
|
|
|
|
|
|