├── README.md ├── bzip2 ├── Android.mk ├── CHANGES ├── LICENSE ├── Makefile ├── Makefile-libbz2_so ├── README ├── README.COMPILATION.PROBLEMS ├── README.XML.STUFF ├── blocksort.c ├── bz-common.xsl ├── bz-fo.xsl ├── bz-html.xsl ├── bzdiff ├── bzdiff.1 ├── bzgrep ├── bzgrep.1 ├── bzip.css ├── bzip2.1 ├── bzip2.1.preformatted ├── bzip2.c ├── bzip2.txt ├── bzip2recover.c ├── bzlib.c ├── bzlib.h ├── bzlib_private.h ├── bzmore ├── bzmore.1 ├── compress.c ├── crctable.c ├── decompress.c ├── dlltest.c ├── dlltest.dsp ├── entities.xml ├── format.pl ├── huffman.c ├── libbz2.def ├── libbz2.dsp ├── makefile.msc ├── manual.html ├── manual.pdf ├── manual.ps ├── manual.xml ├── mk251.c ├── randtable.c ├── sample1.bz2 ├── sample1.ref ├── sample2.bz2 ├── sample2.ref ├── sample3.bz2 ├── sample3.ref ├── spewG.c ├── unzcrash.c ├── words0 ├── words1 ├── words2 ├── words3 └── xmlproc.sh ├── lz4 ├── .gitattributes ├── .gitignore ├── .travis.yml ├── INSTALL ├── LICENSE ├── Makefile ├── NEWS ├── README.md ├── appveyor.yml ├── circle.yml ├── contrib │ ├── cmake_unofficial │ │ ├── .gitignore │ │ └── CMakeLists.txt │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── dirs │ │ ├── docs │ │ ├── liblz4-dev.install │ │ ├── liblz4.install │ │ └── rules │ ├── djgpp │ │ ├── LICENSE │ │ ├── Makefile │ │ └── README.MD │ └── gen_manual │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ ├── gen-lz4-manual.sh │ │ └── gen_manual.cpp ├── doc │ ├── lz4_Block_format.md │ ├── lz4_Frame_format.md │ ├── lz4_manual.html │ └── lz4frame_manual.html ├── examples │ ├── .gitignore │ ├── COPYING │ ├── HCStreaming_ringBuffer.c │ ├── Makefile │ ├── README.md │ ├── blockStreaming_doubleBuffer.c │ ├── blockStreaming_doubleBuffer.md │ ├── blockStreaming_lineByLine.c │ ├── blockStreaming_lineByLine.md │ ├── blockStreaming_ringBuffer.c │ ├── compress_functions.c │ ├── dictionaryRandomAccess.c │ ├── dictionaryRandomAccess.md │ ├── frameCompress.c │ ├── printVersion.c │ ├── simple_buffer.c │ └── streaming_api_basics.md ├── lib │ ├── .gitignore │ ├── Android.mk │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── dll │ │ ├── example │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── fullbench-dll.sln │ │ │ └── fullbench-dll.vcxproj │ │ └── liblz4.def │ ├── liblz4.pc.in │ ├── lz4.c │ ├── lz4.h │ ├── lz4frame.c │ ├── lz4frame.h │ ├── lz4frame_static.h │ ├── lz4hc.c │ ├── lz4hc.h │ ├── lz4opt.h │ ├── xxhash.c │ └── xxhash.h ├── programs │ ├── .gitignore │ ├── COPYING │ ├── Makefile │ ├── README.md │ ├── bench.c │ ├── bench.h │ ├── datagen.c │ ├── datagen.h │ ├── lz4.1 │ ├── lz4.1.md │ ├── lz4cli.c │ ├── lz4io.c │ ├── lz4io.h │ ├── platform.h │ └── util.h ├── tests │ ├── .gitignore │ ├── COPYING │ ├── Makefile │ ├── README.md │ ├── datagencli.c │ ├── fasttest.c │ ├── frametest.c │ ├── fullbench.c │ ├── fuzzer.c │ ├── test-lz4-speed.py │ └── test-lz4-versions.py └── visual │ ├── .gitignore │ ├── README.md │ └── VS2010 │ ├── datagen │ └── datagen.vcxproj │ ├── frametest │ └── frametest.vcxproj │ ├── fullbench-dll │ └── fullbench-dll.vcxproj │ ├── fullbench │ └── fullbench.vcxproj │ ├── fuzzer │ └── fuzzer.vcxproj │ ├── liblz4-dll │ ├── liblz4-dll.rc │ └── liblz4-dll.vcxproj │ ├── liblz4 │ └── liblz4.vcxproj │ └── lz4.sln ├── xz ├── ABOUT-NLS ├── AUTHORS ├── COPYING ├── COPYING.GPLv2 ├── COPYING.GPLv3 ├── COPYING.LGPLv2.1 ├── ChangeLog ├── Doxyfile.in ├── INSTALL ├── INSTALL.generic ├── Makefile.am ├── Makefile.in ├── NEWS ├── PACKAGERS ├── README ├── THANKS ├── TODO ├── aclocal.m4 ├── autogen.sh ├── build-aux │ ├── compile │ ├── config.guess │ ├── config.rpath │ ├── config.sub │ ├── depcomp │ ├── install-sh │ ├── ltmain.sh │ ├── manconv.sh │ ├── missing │ └── version.sh ├── config.h ├── config.h.in ├── configure ├── configure.ac ├── debug │ ├── Makefile.am │ ├── Makefile.in │ ├── README │ ├── crc32.c │ ├── full_flush.c │ ├── hex2bin.c │ ├── known_sizes.c │ ├── memusage.c │ ├── repeat.c │ ├── sync_flush.c │ └── translation.bash ├── doc │ ├── examples │ │ ├── 00_README.txt │ │ ├── 01_compress_easy.c │ │ ├── 02_decompress.c │ │ ├── 03_compress_custom.c │ │ ├── 04_compress_easy_mt.c │ │ └── Makefile │ ├── examples_old │ │ ├── xz_pipe_comp.c │ │ └── xz_pipe_decomp.c │ ├── faq.txt │ ├── history.txt │ ├── lzma-file-format.txt │ ├── man │ │ ├── pdf-a4 │ │ │ ├── lzmainfo-a4.pdf │ │ │ ├── xz-a4.pdf │ │ │ ├── xzdec-a4.pdf │ │ │ ├── xzdiff-a4.pdf │ │ │ ├── xzgrep-a4.pdf │ │ │ ├── xzless-a4.pdf │ │ │ └── xzmore-a4.pdf │ │ ├── pdf-letter │ │ │ ├── lzmainfo-letter.pdf │ │ │ ├── xz-letter.pdf │ │ │ ├── xzdec-letter.pdf │ │ │ ├── xzdiff-letter.pdf │ │ │ ├── xzgrep-letter.pdf │ │ │ ├── xzless-letter.pdf │ │ │ └── xzmore-letter.pdf │ │ └── txt │ │ │ ├── lzmainfo.txt │ │ │ ├── xz.txt │ │ │ ├── xzdec.txt │ │ │ ├── xzdiff.txt │ │ │ ├── xzgrep.txt │ │ │ ├── xzless.txt │ │ │ └── xzmore.txt │ └── xz-file-format.txt ├── dos │ ├── INSTALL.txt │ ├── Makefile │ ├── README.txt │ └── config.h ├── extra │ ├── 7z2lzma │ │ └── 7z2lzma.bash │ └── scanlzma │ │ └── scanlzma.c ├── lib │ ├── Makefile.am │ ├── Makefile.in │ ├── getopt.c │ ├── getopt.in.h │ ├── getopt1.c │ └── getopt_int.h ├── m4 │ ├── ax_check_capsicum.m4 │ ├── ax_pthread.m4 │ ├── getopt.m4 │ ├── gettext.m4 │ ├── iconv.m4 │ ├── intlmacosx.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── libtool.m4 │ ├── ltoptions.m4 │ ├── ltsugar.m4 │ ├── ltversion.m4 │ ├── lt~obsolete.m4 │ ├── nls.m4 │ ├── po.m4 │ ├── posix-shell.m4 │ ├── progtest.m4 │ ├── tuklib_common.m4 │ ├── tuklib_cpucores.m4 │ ├── tuklib_integer.m4 │ ├── tuklib_mbstr.m4 │ ├── tuklib_physmem.m4 │ ├── tuklib_progname.m4 │ └── visibility.m4 ├── macosx │ └── build.sh ├── po │ ├── LINGUAS │ ├── Makefile.in.in │ ├── Makevars │ ├── POTFILES.in │ ├── Rules-quot │ ├── boldquot.sed │ ├── cs.gmo │ ├── cs.po │ ├── de.gmo │ ├── de.po │ ├── en@boldquot.header │ ├── en@quot.header │ ├── fr.gmo │ ├── fr.po │ ├── insert-header.sin │ ├── it.gmo │ ├── it.po │ ├── pl.gmo │ ├── pl.po │ ├── quot.sed │ ├── remove-potcdate.sin │ ├── stamp-po │ ├── vi.gmo │ ├── vi.po │ └── xz.pot ├── src │ ├── Makefile.am │ ├── Makefile.in │ ├── common │ │ ├── common_w32res.rc │ │ ├── mythread.h │ │ ├── sysdefs.h │ │ ├── tuklib_common.h │ │ ├── tuklib_config.h │ │ ├── tuklib_cpucores.c │ │ ├── tuklib_cpucores.h │ │ ├── tuklib_exit.c │ │ ├── tuklib_exit.h │ │ ├── tuklib_gettext.h │ │ ├── tuklib_integer.h │ │ ├── tuklib_mbstr.h │ │ ├── tuklib_mbstr_fw.c │ │ ├── tuklib_mbstr_width.c │ │ ├── tuklib_open_stdxxx.c │ │ ├── tuklib_open_stdxxx.h │ │ ├── tuklib_physmem.c │ │ ├── tuklib_physmem.h │ │ ├── tuklib_progname.c │ │ └── tuklib_progname.h │ ├── liblzma │ │ ├── Android.mk │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── api │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── lzma.h │ │ │ └── lzma │ │ │ │ ├── base.h │ │ │ │ ├── bcj.h │ │ │ │ ├── block.h │ │ │ │ ├── check.h │ │ │ │ ├── container.h │ │ │ │ ├── delta.h │ │ │ │ ├── filter.h │ │ │ │ ├── hardware.h │ │ │ │ ├── index.h │ │ │ │ ├── index_hash.h │ │ │ │ ├── lzma12.h │ │ │ │ ├── stream_flags.h │ │ │ │ ├── version.h │ │ │ │ └── vli.h │ │ ├── check │ │ │ ├── Makefile.inc │ │ │ ├── check.c │ │ │ ├── check.h │ │ │ ├── crc32_fast.c │ │ │ ├── crc32_small.c │ │ │ ├── crc32_table.c │ │ │ ├── crc32_table_be.h │ │ │ ├── crc32_table_le.h │ │ │ ├── crc32_tablegen.c │ │ │ ├── crc32_x86.S │ │ │ ├── crc64_fast.c │ │ │ ├── crc64_small.c │ │ │ ├── crc64_table.c │ │ │ ├── crc64_table_be.h │ │ │ ├── crc64_table_le.h │ │ │ ├── crc64_tablegen.c │ │ │ ├── crc64_x86.S │ │ │ ├── crc_macros.h │ │ │ └── sha256.c │ │ ├── common │ │ │ ├── Makefile.inc │ │ │ ├── alone_decoder.c │ │ │ ├── alone_decoder.h │ │ │ ├── alone_encoder.c │ │ │ ├── auto_decoder.c │ │ │ ├── block_buffer_decoder.c │ │ │ ├── block_buffer_encoder.c │ │ │ ├── block_buffer_encoder.h │ │ │ ├── block_decoder.c │ │ │ ├── block_decoder.h │ │ │ ├── block_encoder.c │ │ │ ├── block_encoder.h │ │ │ ├── block_header_decoder.c │ │ │ ├── block_header_encoder.c │ │ │ ├── block_util.c │ │ │ ├── common.c │ │ │ ├── common.h │ │ │ ├── easy_buffer_encoder.c │ │ │ ├── easy_decoder_memusage.c │ │ │ ├── easy_encoder.c │ │ │ ├── easy_encoder_memusage.c │ │ │ ├── easy_preset.c │ │ │ ├── easy_preset.h │ │ │ ├── filter_buffer_decoder.c │ │ │ ├── filter_buffer_encoder.c │ │ │ ├── filter_common.c │ │ │ ├── filter_common.h │ │ │ ├── filter_decoder.c │ │ │ ├── filter_decoder.h │ │ │ ├── filter_encoder.c │ │ │ ├── filter_encoder.h │ │ │ ├── filter_flags_decoder.c │ │ │ ├── filter_flags_encoder.c │ │ │ ├── hardware_cputhreads.c │ │ │ ├── hardware_physmem.c │ │ │ ├── index.c │ │ │ ├── index.h │ │ │ ├── index_decoder.c │ │ │ ├── index_encoder.c │ │ │ ├── index_encoder.h │ │ │ ├── index_hash.c │ │ │ ├── memcmplen.h │ │ │ ├── outqueue.c │ │ │ ├── outqueue.h │ │ │ ├── stream_buffer_decoder.c │ │ │ ├── stream_buffer_encoder.c │ │ │ ├── stream_decoder.c │ │ │ ├── stream_decoder.h │ │ │ ├── stream_encoder.c │ │ │ ├── stream_encoder_mt.c │ │ │ ├── stream_flags_common.c │ │ │ ├── stream_flags_common.h │ │ │ ├── stream_flags_decoder.c │ │ │ ├── stream_flags_encoder.c │ │ │ ├── vli_decoder.c │ │ │ ├── vli_encoder.c │ │ │ └── vli_size.c │ │ ├── delta │ │ │ ├── Makefile.inc │ │ │ ├── delta_common.c │ │ │ ├── delta_common.h │ │ │ ├── delta_decoder.c │ │ │ ├── delta_decoder.h │ │ │ ├── delta_encoder.c │ │ │ ├── delta_encoder.h │ │ │ └── delta_private.h │ │ ├── liblzma.map │ │ ├── liblzma.pc.in │ │ ├── liblzma_w32res.rc │ │ ├── lz │ │ │ ├── Makefile.inc │ │ │ ├── lz_decoder.c │ │ │ ├── lz_decoder.h │ │ │ ├── lz_encoder.c │ │ │ ├── lz_encoder.h │ │ │ ├── lz_encoder_hash.h │ │ │ ├── lz_encoder_hash_table.h │ │ │ └── lz_encoder_mf.c │ │ ├── lzma │ │ │ ├── Makefile.inc │ │ │ ├── fastpos.h │ │ │ ├── fastpos_table.c │ │ │ ├── fastpos_tablegen.c │ │ │ ├── lzma2_decoder.c │ │ │ ├── lzma2_decoder.h │ │ │ ├── lzma2_encoder.c │ │ │ ├── lzma2_encoder.h │ │ │ ├── lzma_common.h │ │ │ ├── lzma_decoder.c │ │ │ ├── lzma_decoder.h │ │ │ ├── lzma_encoder.c │ │ │ ├── lzma_encoder.h │ │ │ ├── lzma_encoder_optimum_fast.c │ │ │ ├── lzma_encoder_optimum_normal.c │ │ │ ├── lzma_encoder_presets.c │ │ │ └── lzma_encoder_private.h │ │ ├── rangecoder │ │ │ ├── Makefile.inc │ │ │ ├── price.h │ │ │ ├── price_table.c │ │ │ ├── price_tablegen.c │ │ │ ├── range_common.h │ │ │ ├── range_decoder.h │ │ │ └── range_encoder.h │ │ ├── simple │ │ │ ├── Makefile.inc │ │ │ ├── arm.c │ │ │ ├── armthumb.c │ │ │ ├── ia64.c │ │ │ ├── powerpc.c │ │ │ ├── simple_coder.c │ │ │ ├── simple_coder.h │ │ │ ├── simple_decoder.c │ │ │ ├── simple_decoder.h │ │ │ ├── simple_encoder.c │ │ │ ├── simple_encoder.h │ │ │ ├── simple_private.h │ │ │ ├── sparc.c │ │ │ └── x86.c │ │ └── validate_map.sh │ ├── lzmainfo │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── lzmainfo.1 │ │ ├── lzmainfo.c │ │ └── lzmainfo_w32res.rc │ ├── scripts │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── xzdiff.1 │ │ ├── xzdiff.in │ │ ├── xzgrep.1 │ │ ├── xzgrep.in │ │ ├── xzless.1 │ │ ├── xzless.in │ │ ├── xzmore.1 │ │ └── xzmore.in │ ├── xz │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── args.c │ │ ├── args.h │ │ ├── coder.c │ │ ├── coder.h │ │ ├── file_io.c │ │ ├── file_io.h │ │ ├── hardware.c │ │ ├── hardware.h │ │ ├── list.c │ │ ├── list.h │ │ ├── main.c │ │ ├── main.h │ │ ├── message.c │ │ ├── message.h │ │ ├── mytime.c │ │ ├── mytime.h │ │ ├── options.c │ │ ├── options.h │ │ ├── private.h │ │ ├── signals.c │ │ ├── signals.h │ │ ├── suffix.c │ │ ├── suffix.h │ │ ├── util.c │ │ ├── util.h │ │ ├── xz.1 │ │ └── xz_w32res.rc │ └── xzdec │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── lzmadec_w32res.rc │ │ ├── xzdec.1 │ │ ├── xzdec.c │ │ └── xzdec_w32res.rc ├── tests │ ├── Makefile.am │ ├── Makefile.in │ ├── bcj_test.c │ ├── compress_prepared_bcj_sparc │ ├── compress_prepared_bcj_x86 │ ├── create_compress_files.c │ ├── files │ │ ├── README │ │ ├── bad-0-backward_size.xz │ │ ├── bad-0-empty-truncated.xz │ │ ├── bad-0-footer_magic.xz │ │ ├── bad-0-header_magic.xz │ │ ├── bad-0-nonempty_index.xz │ │ ├── bad-0cat-alone.xz │ │ ├── bad-0cat-header_magic.xz │ │ ├── bad-0catpad-empty.xz │ │ ├── bad-0pad-empty.xz │ │ ├── bad-1-block_header-1.xz │ │ ├── bad-1-block_header-2.xz │ │ ├── bad-1-block_header-3.xz │ │ ├── bad-1-block_header-4.xz │ │ ├── bad-1-block_header-5.xz │ │ ├── bad-1-block_header-6.xz │ │ ├── bad-1-check-crc32.xz │ │ ├── bad-1-check-crc64.xz │ │ ├── bad-1-check-sha256.xz │ │ ├── bad-1-lzma2-1.xz │ │ ├── bad-1-lzma2-2.xz │ │ ├── bad-1-lzma2-3.xz │ │ ├── bad-1-lzma2-4.xz │ │ ├── bad-1-lzma2-5.xz │ │ ├── bad-1-lzma2-6.xz │ │ ├── bad-1-lzma2-7.xz │ │ ├── bad-1-lzma2-8.xz │ │ ├── bad-1-stream_flags-1.xz │ │ ├── bad-1-stream_flags-2.xz │ │ ├── bad-1-stream_flags-3.xz │ │ ├── bad-1-vli-1.xz │ │ ├── bad-1-vli-2.xz │ │ ├── bad-2-compressed_data_padding.xz │ │ ├── bad-2-index-1.xz │ │ ├── bad-2-index-2.xz │ │ ├── bad-2-index-3.xz │ │ ├── bad-2-index-4.xz │ │ ├── bad-2-index-5.xz │ │ ├── good-0-empty.xz │ │ ├── good-0cat-empty.xz │ │ ├── good-0catpad-empty.xz │ │ ├── good-0pad-empty.xz │ │ ├── good-1-3delta-lzma2.xz │ │ ├── good-1-block_header-1.xz │ │ ├── good-1-block_header-2.xz │ │ ├── good-1-block_header-3.xz │ │ ├── good-1-check-crc32.xz │ │ ├── good-1-check-crc64.xz │ │ ├── good-1-check-none.xz │ │ ├── good-1-check-sha256.xz │ │ ├── good-1-delta-lzma2.tiff.xz │ │ ├── good-1-lzma2-1.xz │ │ ├── good-1-lzma2-2.xz │ │ ├── good-1-lzma2-3.xz │ │ ├── good-1-lzma2-4.xz │ │ ├── good-1-lzma2-5.xz │ │ ├── good-1-sparc-lzma2.xz │ │ ├── good-1-x86-lzma2.xz │ │ ├── good-2-lzma2.xz │ │ ├── unsupported-block_header.xz │ │ ├── unsupported-check.xz │ │ ├── unsupported-filter_flags-1.xz │ │ ├── unsupported-filter_flags-2.xz │ │ └── unsupported-filter_flags-3.xz │ ├── test_bcj_exact_size.c │ ├── test_block_header.c │ ├── test_check.c │ ├── test_compress.sh │ ├── test_files.sh │ ├── test_filter_flags.c │ ├── test_index.c │ ├── test_scripts.sh │ ├── test_stream_flags.c │ ├── tests.h │ └── xzgrep_expected_output └── windows │ ├── INSTALL-MSVC.txt │ ├── INSTALL-MinGW.txt │ ├── README-Windows.txt │ ├── build.bash │ ├── config.h │ ├── liblzma.vcxproj │ ├── liblzma_dll.vcxproj │ └── xz_win.sln └── zlib ├── Android.mk ├── CMakeLists.txt ├── ChangeLog ├── FAQ ├── INDEX ├── Makefile ├── Makefile.in ├── README ├── adler32.c ├── amiga ├── Makefile.pup └── Makefile.sas ├── compress.c ├── configure ├── contrib ├── README.contrib ├── ada │ ├── buffer_demo.adb │ ├── mtest.adb │ ├── read.adb │ ├── readme.txt │ ├── test.adb │ ├── zlib-streams.adb │ ├── zlib-streams.ads │ ├── zlib-thin.adb │ ├── zlib-thin.ads │ ├── zlib.adb │ ├── zlib.ads │ └── zlib.gpr ├── amd64 │ └── amd64-match.S ├── asm686 │ ├── README.686 │ └── match.S ├── blast │ ├── Makefile │ ├── README │ ├── blast.c │ ├── blast.h │ ├── test.pk │ └── test.txt ├── delphi │ ├── ZLib.pas │ ├── ZLibConst.pas │ ├── readme.txt │ └── zlibd32.mak ├── dotzlib │ ├── DotZLib.build │ ├── DotZLib.chm │ ├── DotZLib.sln │ ├── DotZLib │ │ ├── AssemblyInfo.cs │ │ ├── ChecksumImpl.cs │ │ ├── CircularBuffer.cs │ │ ├── CodecBase.cs │ │ ├── Deflater.cs │ │ ├── DotZLib.cs │ │ ├── DotZLib.csproj │ │ ├── GZipStream.cs │ │ ├── Inflater.cs │ │ └── UnitTests.cs │ ├── LICENSE_1_0.txt │ └── readme.txt ├── gcc_gvmat64 │ └── gvmat64.S ├── infback9 │ ├── README │ ├── infback9.c │ ├── infback9.h │ ├── inffix9.h │ ├── inflate9.h │ ├── inftree9.c │ └── inftree9.h ├── inflate86 │ ├── inffas86.c │ └── inffast.S ├── iostream │ ├── test.cpp │ ├── zfstream.cpp │ └── zfstream.h ├── iostream2 │ ├── zstream.h │ └── zstream_test.cpp ├── iostream3 │ ├── README │ ├── TODO │ ├── test.cc │ ├── zfstream.cc │ └── zfstream.h ├── masmx64 │ ├── bld_ml64.bat │ ├── gvmat64.asm │ ├── inffas8664.c │ ├── inffasx64.asm │ └── readme.txt ├── masmx86 │ ├── bld_ml32.bat │ ├── inffas32.asm │ ├── match686.asm │ └── readme.txt ├── minizip │ ├── Makefile │ ├── Makefile.am │ ├── MiniZip64_Changes.txt │ ├── MiniZip64_info.txt │ ├── configure.ac │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── iowin32.c │ ├── iowin32.h │ ├── make_vms.com │ ├── miniunz.c │ ├── miniunzip.1 │ ├── minizip.1 │ ├── minizip.c │ ├── minizip.pc.in │ ├── mztools.c │ ├── mztools.h │ ├── unzip.c │ ├── unzip.h │ ├── zip.c │ └── zip.h ├── pascal │ ├── example.pas │ ├── readme.txt │ ├── zlibd32.mak │ └── zlibpas.pas ├── puff │ ├── Makefile │ ├── README │ ├── puff.c │ ├── puff.h │ ├── pufftest.c │ └── zeros.raw ├── testzlib │ ├── testzlib.c │ └── testzlib.txt ├── untgz │ ├── Makefile │ ├── Makefile.msc │ └── untgz.c └── vstudio │ ├── readme.txt │ ├── vc10 │ ├── miniunz.vcxproj │ ├── miniunz.vcxproj.filters │ ├── minizip.vcxproj │ ├── minizip.vcxproj.filters │ ├── testzlib.vcxproj │ ├── testzlib.vcxproj.filters │ ├── testzlibdll.vcxproj │ ├── testzlibdll.vcxproj.filters │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibstat.vcxproj.filters │ ├── zlibvc.def │ ├── zlibvc.sln │ ├── zlibvc.vcxproj │ └── zlibvc.vcxproj.filters │ ├── vc11 │ ├── miniunz.vcxproj │ ├── minizip.vcxproj │ ├── testzlib.vcxproj │ ├── testzlibdll.vcxproj │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcxproj │ ├── vc12 │ ├── miniunz.vcxproj │ ├── minizip.vcxproj │ ├── testzlib.vcxproj │ ├── testzlibdll.vcxproj │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcxproj │ ├── vc14 │ ├── miniunz.vcxproj │ ├── minizip.vcxproj │ ├── testzlib.vcxproj │ ├── testzlibdll.vcxproj │ ├── zlib.rc │ ├── zlibstat.vcxproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcxproj │ └── vc9 │ ├── miniunz.vcproj │ ├── minizip.vcproj │ ├── testzlib.vcproj │ ├── testzlibdll.vcproj │ ├── zlib.rc │ ├── zlibstat.vcproj │ ├── zlibvc.def │ ├── zlibvc.sln │ └── zlibvc.vcproj ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── doc ├── algorithm.txt ├── rfc1950.txt ├── rfc1951.txt ├── rfc1952.txt └── txtvsbin.txt ├── examples ├── README.examples ├── enough.c ├── fitblk.c ├── gun.c ├── gzappend.c ├── gzjoin.c ├── gzlog.c ├── gzlog.h ├── zlib_how.html ├── zpipe.c └── zran.c ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── make_vms.com ├── msdos ├── Makefile.bor ├── Makefile.dj2 ├── Makefile.emx ├── Makefile.msc └── Makefile.tc ├── nintendods ├── Makefile └── README ├── old ├── Makefile.emx ├── Makefile.riscos ├── README ├── descrip.mms ├── os2 │ ├── Makefile.os2 │ └── zlib.def └── visual-basic.txt ├── os400 ├── README400 ├── bndsrc ├── make.sh └── zlib.inc ├── qnx └── package.qpg ├── test ├── example.c ├── infcover.c └── minigzip.c ├── treebuild.xml ├── trees.c ├── trees.h ├── uncompr.c ├── watcom ├── watcom_f.mak └── watcom_l.mak ├── win32 ├── DLL_FAQ.txt ├── Makefile.bor ├── Makefile.gcc ├── Makefile.msc ├── README-WIN32.txt ├── VisualC.txt ├── zlib.def └── zlib1.rc ├── zconf.h ├── zconf.h.cmakein ├── zconf.h.in ├── zlib.3 ├── zlib.3.pdf ├── zlib.h ├── zlib.map ├── zlib.pc.cmakein ├── zlib.pc.in ├── zlib2ansi ├── zutil.c └── zutil.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/README.md -------------------------------------------------------------------------------- /bzip2/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/Android.mk -------------------------------------------------------------------------------- /bzip2/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/CHANGES -------------------------------------------------------------------------------- /bzip2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/LICENSE -------------------------------------------------------------------------------- /bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/Makefile -------------------------------------------------------------------------------- /bzip2/Makefile-libbz2_so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/Makefile-libbz2_so -------------------------------------------------------------------------------- /bzip2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/README -------------------------------------------------------------------------------- /bzip2/README.COMPILATION.PROBLEMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/README.COMPILATION.PROBLEMS -------------------------------------------------------------------------------- /bzip2/README.XML.STUFF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/README.XML.STUFF -------------------------------------------------------------------------------- /bzip2/blocksort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/blocksort.c -------------------------------------------------------------------------------- /bzip2/bz-common.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bz-common.xsl -------------------------------------------------------------------------------- /bzip2/bz-fo.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bz-fo.xsl -------------------------------------------------------------------------------- /bzip2/bz-html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bz-html.xsl -------------------------------------------------------------------------------- /bzip2/bzdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzdiff -------------------------------------------------------------------------------- /bzip2/bzdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzdiff.1 -------------------------------------------------------------------------------- /bzip2/bzgrep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzgrep -------------------------------------------------------------------------------- /bzip2/bzgrep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzgrep.1 -------------------------------------------------------------------------------- /bzip2/bzip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzip.css -------------------------------------------------------------------------------- /bzip2/bzip2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzip2.1 -------------------------------------------------------------------------------- /bzip2/bzip2.1.preformatted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzip2.1.preformatted -------------------------------------------------------------------------------- /bzip2/bzip2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzip2.c -------------------------------------------------------------------------------- /bzip2/bzip2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzip2.txt -------------------------------------------------------------------------------- /bzip2/bzip2recover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzip2recover.c -------------------------------------------------------------------------------- /bzip2/bzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzlib.c -------------------------------------------------------------------------------- /bzip2/bzlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzlib.h -------------------------------------------------------------------------------- /bzip2/bzlib_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzlib_private.h -------------------------------------------------------------------------------- /bzip2/bzmore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzmore -------------------------------------------------------------------------------- /bzip2/bzmore.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/bzmore.1 -------------------------------------------------------------------------------- /bzip2/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/compress.c -------------------------------------------------------------------------------- /bzip2/crctable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/crctable.c -------------------------------------------------------------------------------- /bzip2/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/decompress.c -------------------------------------------------------------------------------- /bzip2/dlltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/dlltest.c -------------------------------------------------------------------------------- /bzip2/dlltest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/dlltest.dsp -------------------------------------------------------------------------------- /bzip2/entities.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/entities.xml -------------------------------------------------------------------------------- /bzip2/format.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/format.pl -------------------------------------------------------------------------------- /bzip2/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/huffman.c -------------------------------------------------------------------------------- /bzip2/libbz2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/libbz2.def -------------------------------------------------------------------------------- /bzip2/libbz2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/libbz2.dsp -------------------------------------------------------------------------------- /bzip2/makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/makefile.msc -------------------------------------------------------------------------------- /bzip2/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/manual.html -------------------------------------------------------------------------------- /bzip2/manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/manual.pdf -------------------------------------------------------------------------------- /bzip2/manual.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/manual.ps -------------------------------------------------------------------------------- /bzip2/manual.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/manual.xml -------------------------------------------------------------------------------- /bzip2/mk251.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/mk251.c -------------------------------------------------------------------------------- /bzip2/randtable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/randtable.c -------------------------------------------------------------------------------- /bzip2/sample1.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/sample1.bz2 -------------------------------------------------------------------------------- /bzip2/sample1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/sample1.ref -------------------------------------------------------------------------------- /bzip2/sample2.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/sample2.bz2 -------------------------------------------------------------------------------- /bzip2/sample2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/sample2.ref -------------------------------------------------------------------------------- /bzip2/sample3.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/sample3.bz2 -------------------------------------------------------------------------------- /bzip2/sample3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/sample3.ref -------------------------------------------------------------------------------- /bzip2/spewG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/spewG.c -------------------------------------------------------------------------------- /bzip2/unzcrash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/unzcrash.c -------------------------------------------------------------------------------- /bzip2/words0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/words0 -------------------------------------------------------------------------------- /bzip2/words1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/words1 -------------------------------------------------------------------------------- /bzip2/words2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/words2 -------------------------------------------------------------------------------- /bzip2/words3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/words3 -------------------------------------------------------------------------------- /bzip2/xmlproc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/bzip2/xmlproc.sh -------------------------------------------------------------------------------- /lz4/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/.gitattributes -------------------------------------------------------------------------------- /lz4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/.gitignore -------------------------------------------------------------------------------- /lz4/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/.travis.yml -------------------------------------------------------------------------------- /lz4/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/INSTALL -------------------------------------------------------------------------------- /lz4/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/LICENSE -------------------------------------------------------------------------------- /lz4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/Makefile -------------------------------------------------------------------------------- /lz4/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/NEWS -------------------------------------------------------------------------------- /lz4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/README.md -------------------------------------------------------------------------------- /lz4/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/appveyor.yml -------------------------------------------------------------------------------- /lz4/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/circle.yml -------------------------------------------------------------------------------- /lz4/contrib/cmake_unofficial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/cmake_unofficial/.gitignore -------------------------------------------------------------------------------- /lz4/contrib/cmake_unofficial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/cmake_unofficial/CMakeLists.txt -------------------------------------------------------------------------------- /lz4/contrib/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/debian/changelog -------------------------------------------------------------------------------- /lz4/contrib/debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /lz4/contrib/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/debian/control -------------------------------------------------------------------------------- /lz4/contrib/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/debian/copyright -------------------------------------------------------------------------------- /lz4/contrib/debian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /lz4/contrib/debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lz4/contrib/debian/liblz4-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/debian/liblz4-dev.install -------------------------------------------------------------------------------- /lz4/contrib/debian/liblz4.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/debian/liblz4.install -------------------------------------------------------------------------------- /lz4/contrib/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/debian/rules -------------------------------------------------------------------------------- /lz4/contrib/djgpp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/djgpp/LICENSE -------------------------------------------------------------------------------- /lz4/contrib/djgpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/djgpp/Makefile -------------------------------------------------------------------------------- /lz4/contrib/djgpp/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/djgpp/README.MD -------------------------------------------------------------------------------- /lz4/contrib/gen_manual/.gitignore: -------------------------------------------------------------------------------- 1 | # build artefact 2 | gen_manual 3 | -------------------------------------------------------------------------------- /lz4/contrib/gen_manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/gen_manual/Makefile -------------------------------------------------------------------------------- /lz4/contrib/gen_manual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/gen_manual/README.md -------------------------------------------------------------------------------- /lz4/contrib/gen_manual/gen-lz4-manual.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/gen_manual/gen-lz4-manual.sh -------------------------------------------------------------------------------- /lz4/contrib/gen_manual/gen_manual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/contrib/gen_manual/gen_manual.cpp -------------------------------------------------------------------------------- /lz4/doc/lz4_Block_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/doc/lz4_Block_format.md -------------------------------------------------------------------------------- /lz4/doc/lz4_Frame_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/doc/lz4_Frame_format.md -------------------------------------------------------------------------------- /lz4/doc/lz4_manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/doc/lz4_manual.html -------------------------------------------------------------------------------- /lz4/doc/lz4frame_manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/doc/lz4frame_manual.html -------------------------------------------------------------------------------- /lz4/examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/.gitignore -------------------------------------------------------------------------------- /lz4/examples/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/COPYING -------------------------------------------------------------------------------- /lz4/examples/HCStreaming_ringBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/HCStreaming_ringBuffer.c -------------------------------------------------------------------------------- /lz4/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/Makefile -------------------------------------------------------------------------------- /lz4/examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/README.md -------------------------------------------------------------------------------- /lz4/examples/blockStreaming_doubleBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/blockStreaming_doubleBuffer.c -------------------------------------------------------------------------------- /lz4/examples/blockStreaming_doubleBuffer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/blockStreaming_doubleBuffer.md -------------------------------------------------------------------------------- /lz4/examples/blockStreaming_lineByLine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/blockStreaming_lineByLine.c -------------------------------------------------------------------------------- /lz4/examples/blockStreaming_lineByLine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/blockStreaming_lineByLine.md -------------------------------------------------------------------------------- /lz4/examples/blockStreaming_ringBuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/blockStreaming_ringBuffer.c -------------------------------------------------------------------------------- /lz4/examples/compress_functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/compress_functions.c -------------------------------------------------------------------------------- /lz4/examples/dictionaryRandomAccess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/dictionaryRandomAccess.c -------------------------------------------------------------------------------- /lz4/examples/dictionaryRandomAccess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/dictionaryRandomAccess.md -------------------------------------------------------------------------------- /lz4/examples/frameCompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/frameCompress.c -------------------------------------------------------------------------------- /lz4/examples/printVersion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/printVersion.c -------------------------------------------------------------------------------- /lz4/examples/simple_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/simple_buffer.c -------------------------------------------------------------------------------- /lz4/examples/streaming_api_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/examples/streaming_api_basics.md -------------------------------------------------------------------------------- /lz4/lib/.gitignore: -------------------------------------------------------------------------------- 1 | # make install artefact 2 | liblz4.pc 3 | -------------------------------------------------------------------------------- /lz4/lib/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/Android.mk -------------------------------------------------------------------------------- /lz4/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/LICENSE -------------------------------------------------------------------------------- /lz4/lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/Makefile -------------------------------------------------------------------------------- /lz4/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/README.md -------------------------------------------------------------------------------- /lz4/lib/dll/example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/dll/example/Makefile -------------------------------------------------------------------------------- /lz4/lib/dll/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/dll/example/README.md -------------------------------------------------------------------------------- /lz4/lib/dll/example/fullbench-dll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/dll/example/fullbench-dll.sln -------------------------------------------------------------------------------- /lz4/lib/dll/example/fullbench-dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/dll/example/fullbench-dll.vcxproj -------------------------------------------------------------------------------- /lz4/lib/dll/liblz4.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/dll/liblz4.def -------------------------------------------------------------------------------- /lz4/lib/liblz4.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/liblz4.pc.in -------------------------------------------------------------------------------- /lz4/lib/lz4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/lz4.c -------------------------------------------------------------------------------- /lz4/lib/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/lz4.h -------------------------------------------------------------------------------- /lz4/lib/lz4frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/lz4frame.c -------------------------------------------------------------------------------- /lz4/lib/lz4frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/lz4frame.h -------------------------------------------------------------------------------- /lz4/lib/lz4frame_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/lz4frame_static.h -------------------------------------------------------------------------------- /lz4/lib/lz4hc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/lz4hc.c -------------------------------------------------------------------------------- /lz4/lib/lz4hc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/lz4hc.h -------------------------------------------------------------------------------- /lz4/lib/lz4opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/lz4opt.h -------------------------------------------------------------------------------- /lz4/lib/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/xxhash.c -------------------------------------------------------------------------------- /lz4/lib/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/lib/xxhash.h -------------------------------------------------------------------------------- /lz4/programs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/.gitignore -------------------------------------------------------------------------------- /lz4/programs/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/COPYING -------------------------------------------------------------------------------- /lz4/programs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/Makefile -------------------------------------------------------------------------------- /lz4/programs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/README.md -------------------------------------------------------------------------------- /lz4/programs/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/bench.c -------------------------------------------------------------------------------- /lz4/programs/bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/bench.h -------------------------------------------------------------------------------- /lz4/programs/datagen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/datagen.c -------------------------------------------------------------------------------- /lz4/programs/datagen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/datagen.h -------------------------------------------------------------------------------- /lz4/programs/lz4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/lz4.1 -------------------------------------------------------------------------------- /lz4/programs/lz4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/lz4.1.md -------------------------------------------------------------------------------- /lz4/programs/lz4cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/lz4cli.c -------------------------------------------------------------------------------- /lz4/programs/lz4io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/lz4io.c -------------------------------------------------------------------------------- /lz4/programs/lz4io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/lz4io.h -------------------------------------------------------------------------------- /lz4/programs/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/platform.h -------------------------------------------------------------------------------- /lz4/programs/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/programs/util.h -------------------------------------------------------------------------------- /lz4/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/tests/.gitignore -------------------------------------------------------------------------------- /lz4/tests/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/tests/COPYING -------------------------------------------------------------------------------- /lz4/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/tests/Makefile -------------------------------------------------------------------------------- /lz4/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/tests/README.md -------------------------------------------------------------------------------- /lz4/tests/datagencli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/tests/datagencli.c -------------------------------------------------------------------------------- /lz4/tests/fasttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/tests/fasttest.c -------------------------------------------------------------------------------- /lz4/tests/frametest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/tests/frametest.c -------------------------------------------------------------------------------- /lz4/tests/fullbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/tests/fullbench.c -------------------------------------------------------------------------------- /lz4/tests/fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/tests/fuzzer.c -------------------------------------------------------------------------------- /lz4/tests/test-lz4-speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/tests/test-lz4-speed.py -------------------------------------------------------------------------------- /lz4/tests/test-lz4-versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/tests/test-lz4-versions.py -------------------------------------------------------------------------------- /lz4/visual/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/visual/.gitignore -------------------------------------------------------------------------------- /lz4/visual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/visual/README.md -------------------------------------------------------------------------------- /lz4/visual/VS2010/datagen/datagen.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/visual/VS2010/datagen/datagen.vcxproj -------------------------------------------------------------------------------- /lz4/visual/VS2010/frametest/frametest.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/visual/VS2010/frametest/frametest.vcxproj -------------------------------------------------------------------------------- /lz4/visual/VS2010/fullbench/fullbench.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/visual/VS2010/fullbench/fullbench.vcxproj -------------------------------------------------------------------------------- /lz4/visual/VS2010/fuzzer/fuzzer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/visual/VS2010/fuzzer/fuzzer.vcxproj -------------------------------------------------------------------------------- /lz4/visual/VS2010/liblz4-dll/liblz4-dll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/visual/VS2010/liblz4-dll/liblz4-dll.rc -------------------------------------------------------------------------------- /lz4/visual/VS2010/liblz4-dll/liblz4-dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/visual/VS2010/liblz4-dll/liblz4-dll.vcxproj -------------------------------------------------------------------------------- /lz4/visual/VS2010/liblz4/liblz4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/visual/VS2010/liblz4/liblz4.vcxproj -------------------------------------------------------------------------------- /lz4/visual/VS2010/lz4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/lz4/visual/VS2010/lz4.sln -------------------------------------------------------------------------------- /xz/ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/ABOUT-NLS -------------------------------------------------------------------------------- /xz/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/AUTHORS -------------------------------------------------------------------------------- /xz/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/COPYING -------------------------------------------------------------------------------- /xz/COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/COPYING.GPLv2 -------------------------------------------------------------------------------- /xz/COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/COPYING.GPLv3 -------------------------------------------------------------------------------- /xz/COPYING.LGPLv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/COPYING.LGPLv2.1 -------------------------------------------------------------------------------- /xz/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/ChangeLog -------------------------------------------------------------------------------- /xz/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/Doxyfile.in -------------------------------------------------------------------------------- /xz/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/INSTALL -------------------------------------------------------------------------------- /xz/INSTALL.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/INSTALL.generic -------------------------------------------------------------------------------- /xz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/Makefile.am -------------------------------------------------------------------------------- /xz/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/Makefile.in -------------------------------------------------------------------------------- /xz/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/NEWS -------------------------------------------------------------------------------- /xz/PACKAGERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/PACKAGERS -------------------------------------------------------------------------------- /xz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/README -------------------------------------------------------------------------------- /xz/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/THANKS -------------------------------------------------------------------------------- /xz/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/TODO -------------------------------------------------------------------------------- /xz/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/aclocal.m4 -------------------------------------------------------------------------------- /xz/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/autogen.sh -------------------------------------------------------------------------------- /xz/build-aux/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/build-aux/compile -------------------------------------------------------------------------------- /xz/build-aux/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/build-aux/config.guess -------------------------------------------------------------------------------- /xz/build-aux/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/build-aux/config.rpath -------------------------------------------------------------------------------- /xz/build-aux/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/build-aux/config.sub -------------------------------------------------------------------------------- /xz/build-aux/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/build-aux/depcomp -------------------------------------------------------------------------------- /xz/build-aux/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/build-aux/install-sh -------------------------------------------------------------------------------- /xz/build-aux/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/build-aux/ltmain.sh -------------------------------------------------------------------------------- /xz/build-aux/manconv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/build-aux/manconv.sh -------------------------------------------------------------------------------- /xz/build-aux/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/build-aux/missing -------------------------------------------------------------------------------- /xz/build-aux/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/build-aux/version.sh -------------------------------------------------------------------------------- /xz/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/config.h -------------------------------------------------------------------------------- /xz/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/config.h.in -------------------------------------------------------------------------------- /xz/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/configure -------------------------------------------------------------------------------- /xz/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/configure.ac -------------------------------------------------------------------------------- /xz/debug/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/debug/Makefile.am -------------------------------------------------------------------------------- /xz/debug/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/debug/Makefile.in -------------------------------------------------------------------------------- /xz/debug/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/debug/README -------------------------------------------------------------------------------- /xz/debug/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/debug/crc32.c -------------------------------------------------------------------------------- /xz/debug/full_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/debug/full_flush.c -------------------------------------------------------------------------------- /xz/debug/hex2bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/debug/hex2bin.c -------------------------------------------------------------------------------- /xz/debug/known_sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/debug/known_sizes.c -------------------------------------------------------------------------------- /xz/debug/memusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/debug/memusage.c -------------------------------------------------------------------------------- /xz/debug/repeat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/debug/repeat.c -------------------------------------------------------------------------------- /xz/debug/sync_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/debug/sync_flush.c -------------------------------------------------------------------------------- /xz/debug/translation.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/debug/translation.bash -------------------------------------------------------------------------------- /xz/doc/examples/00_README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/examples/00_README.txt -------------------------------------------------------------------------------- /xz/doc/examples/01_compress_easy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/examples/01_compress_easy.c -------------------------------------------------------------------------------- /xz/doc/examples/02_decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/examples/02_decompress.c -------------------------------------------------------------------------------- /xz/doc/examples/03_compress_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/examples/03_compress_custom.c -------------------------------------------------------------------------------- /xz/doc/examples/04_compress_easy_mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/examples/04_compress_easy_mt.c -------------------------------------------------------------------------------- /xz/doc/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/examples/Makefile -------------------------------------------------------------------------------- /xz/doc/examples_old/xz_pipe_comp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/examples_old/xz_pipe_comp.c -------------------------------------------------------------------------------- /xz/doc/examples_old/xz_pipe_decomp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/examples_old/xz_pipe_decomp.c -------------------------------------------------------------------------------- /xz/doc/faq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/faq.txt -------------------------------------------------------------------------------- /xz/doc/history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/history.txt -------------------------------------------------------------------------------- /xz/doc/lzma-file-format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/lzma-file-format.txt -------------------------------------------------------------------------------- /xz/doc/man/pdf-a4/lzmainfo-a4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-a4/lzmainfo-a4.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-a4/xz-a4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-a4/xz-a4.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-a4/xzdec-a4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-a4/xzdec-a4.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-a4/xzdiff-a4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-a4/xzdiff-a4.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-a4/xzgrep-a4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-a4/xzgrep-a4.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-a4/xzless-a4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-a4/xzless-a4.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-a4/xzmore-a4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-a4/xzmore-a4.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-letter/lzmainfo-letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-letter/lzmainfo-letter.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-letter/xz-letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-letter/xz-letter.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-letter/xzdec-letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-letter/xzdec-letter.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-letter/xzdiff-letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-letter/xzdiff-letter.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-letter/xzgrep-letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-letter/xzgrep-letter.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-letter/xzless-letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-letter/xzless-letter.pdf -------------------------------------------------------------------------------- /xz/doc/man/pdf-letter/xzmore-letter.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/pdf-letter/xzmore-letter.pdf -------------------------------------------------------------------------------- /xz/doc/man/txt/lzmainfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/txt/lzmainfo.txt -------------------------------------------------------------------------------- /xz/doc/man/txt/xz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/txt/xz.txt -------------------------------------------------------------------------------- /xz/doc/man/txt/xzdec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/txt/xzdec.txt -------------------------------------------------------------------------------- /xz/doc/man/txt/xzdiff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/txt/xzdiff.txt -------------------------------------------------------------------------------- /xz/doc/man/txt/xzgrep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/txt/xzgrep.txt -------------------------------------------------------------------------------- /xz/doc/man/txt/xzless.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/txt/xzless.txt -------------------------------------------------------------------------------- /xz/doc/man/txt/xzmore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/man/txt/xzmore.txt -------------------------------------------------------------------------------- /xz/doc/xz-file-format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/doc/xz-file-format.txt -------------------------------------------------------------------------------- /xz/dos/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/dos/INSTALL.txt -------------------------------------------------------------------------------- /xz/dos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/dos/Makefile -------------------------------------------------------------------------------- /xz/dos/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/dos/README.txt -------------------------------------------------------------------------------- /xz/dos/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/dos/config.h -------------------------------------------------------------------------------- /xz/extra/7z2lzma/7z2lzma.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/extra/7z2lzma/7z2lzma.bash -------------------------------------------------------------------------------- /xz/extra/scanlzma/scanlzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/extra/scanlzma/scanlzma.c -------------------------------------------------------------------------------- /xz/lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/lib/Makefile.am -------------------------------------------------------------------------------- /xz/lib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/lib/Makefile.in -------------------------------------------------------------------------------- /xz/lib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/lib/getopt.c -------------------------------------------------------------------------------- /xz/lib/getopt.in.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/lib/getopt.in.h -------------------------------------------------------------------------------- /xz/lib/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/lib/getopt1.c -------------------------------------------------------------------------------- /xz/lib/getopt_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/lib/getopt_int.h -------------------------------------------------------------------------------- /xz/m4/ax_check_capsicum.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/ax_check_capsicum.m4 -------------------------------------------------------------------------------- /xz/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /xz/m4/getopt.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/getopt.m4 -------------------------------------------------------------------------------- /xz/m4/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/gettext.m4 -------------------------------------------------------------------------------- /xz/m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/iconv.m4 -------------------------------------------------------------------------------- /xz/m4/intlmacosx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/intlmacosx.m4 -------------------------------------------------------------------------------- /xz/m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/lib-ld.m4 -------------------------------------------------------------------------------- /xz/m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/lib-link.m4 -------------------------------------------------------------------------------- /xz/m4/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/lib-prefix.m4 -------------------------------------------------------------------------------- /xz/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/libtool.m4 -------------------------------------------------------------------------------- /xz/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/ltoptions.m4 -------------------------------------------------------------------------------- /xz/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/ltsugar.m4 -------------------------------------------------------------------------------- /xz/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/ltversion.m4 -------------------------------------------------------------------------------- /xz/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /xz/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/nls.m4 -------------------------------------------------------------------------------- /xz/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/po.m4 -------------------------------------------------------------------------------- /xz/m4/posix-shell.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/posix-shell.m4 -------------------------------------------------------------------------------- /xz/m4/progtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/progtest.m4 -------------------------------------------------------------------------------- /xz/m4/tuklib_common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/tuklib_common.m4 -------------------------------------------------------------------------------- /xz/m4/tuklib_cpucores.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/tuklib_cpucores.m4 -------------------------------------------------------------------------------- /xz/m4/tuklib_integer.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/tuklib_integer.m4 -------------------------------------------------------------------------------- /xz/m4/tuklib_mbstr.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/tuklib_mbstr.m4 -------------------------------------------------------------------------------- /xz/m4/tuklib_physmem.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/tuklib_physmem.m4 -------------------------------------------------------------------------------- /xz/m4/tuklib_progname.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/tuklib_progname.m4 -------------------------------------------------------------------------------- /xz/m4/visibility.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/m4/visibility.m4 -------------------------------------------------------------------------------- /xz/macosx/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/macosx/build.sh -------------------------------------------------------------------------------- /xz/po/LINGUAS: -------------------------------------------------------------------------------- 1 | cs 2 | de 3 | fr 4 | it 5 | pl 6 | vi 7 | -------------------------------------------------------------------------------- /xz/po/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/Makefile.in.in -------------------------------------------------------------------------------- /xz/po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/Makevars -------------------------------------------------------------------------------- /xz/po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/POTFILES.in -------------------------------------------------------------------------------- /xz/po/Rules-quot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/Rules-quot -------------------------------------------------------------------------------- /xz/po/boldquot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/boldquot.sed -------------------------------------------------------------------------------- /xz/po/cs.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/cs.gmo -------------------------------------------------------------------------------- /xz/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/cs.po -------------------------------------------------------------------------------- /xz/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/de.gmo -------------------------------------------------------------------------------- /xz/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/de.po -------------------------------------------------------------------------------- /xz/po/en@boldquot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/en@boldquot.header -------------------------------------------------------------------------------- /xz/po/en@quot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/en@quot.header -------------------------------------------------------------------------------- /xz/po/fr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/fr.gmo -------------------------------------------------------------------------------- /xz/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/fr.po -------------------------------------------------------------------------------- /xz/po/insert-header.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/insert-header.sin -------------------------------------------------------------------------------- /xz/po/it.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/it.gmo -------------------------------------------------------------------------------- /xz/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/it.po -------------------------------------------------------------------------------- /xz/po/pl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/pl.gmo -------------------------------------------------------------------------------- /xz/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/pl.po -------------------------------------------------------------------------------- /xz/po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/quot.sed -------------------------------------------------------------------------------- /xz/po/remove-potcdate.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/remove-potcdate.sin -------------------------------------------------------------------------------- /xz/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /xz/po/vi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/vi.gmo -------------------------------------------------------------------------------- /xz/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/vi.po -------------------------------------------------------------------------------- /xz/po/xz.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/po/xz.pot -------------------------------------------------------------------------------- /xz/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/Makefile.am -------------------------------------------------------------------------------- /xz/src/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/Makefile.in -------------------------------------------------------------------------------- /xz/src/common/common_w32res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/common_w32res.rc -------------------------------------------------------------------------------- /xz/src/common/mythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/mythread.h -------------------------------------------------------------------------------- /xz/src/common/sysdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/sysdefs.h -------------------------------------------------------------------------------- /xz/src/common/tuklib_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_common.h -------------------------------------------------------------------------------- /xz/src/common/tuklib_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_config.h -------------------------------------------------------------------------------- /xz/src/common/tuklib_cpucores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_cpucores.c -------------------------------------------------------------------------------- /xz/src/common/tuklib_cpucores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_cpucores.h -------------------------------------------------------------------------------- /xz/src/common/tuklib_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_exit.c -------------------------------------------------------------------------------- /xz/src/common/tuklib_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_exit.h -------------------------------------------------------------------------------- /xz/src/common/tuklib_gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_gettext.h -------------------------------------------------------------------------------- /xz/src/common/tuklib_integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_integer.h -------------------------------------------------------------------------------- /xz/src/common/tuklib_mbstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_mbstr.h -------------------------------------------------------------------------------- /xz/src/common/tuklib_mbstr_fw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_mbstr_fw.c -------------------------------------------------------------------------------- /xz/src/common/tuklib_mbstr_width.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_mbstr_width.c -------------------------------------------------------------------------------- /xz/src/common/tuklib_open_stdxxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_open_stdxxx.c -------------------------------------------------------------------------------- /xz/src/common/tuklib_open_stdxxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_open_stdxxx.h -------------------------------------------------------------------------------- /xz/src/common/tuklib_physmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_physmem.c -------------------------------------------------------------------------------- /xz/src/common/tuklib_physmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_physmem.h -------------------------------------------------------------------------------- /xz/src/common/tuklib_progname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_progname.c -------------------------------------------------------------------------------- /xz/src/common/tuklib_progname.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/common/tuklib_progname.h -------------------------------------------------------------------------------- /xz/src/liblzma/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/Android.mk -------------------------------------------------------------------------------- /xz/src/liblzma/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/Makefile.am -------------------------------------------------------------------------------- /xz/src/liblzma/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/Makefile.in -------------------------------------------------------------------------------- /xz/src/liblzma/api/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/Makefile.am -------------------------------------------------------------------------------- /xz/src/liblzma/api/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/Makefile.in -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/base.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/bcj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/bcj.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/block.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/check.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/container.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/delta.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/filter.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/hardware.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/index.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/index_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/index_hash.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/lzma12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/lzma12.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/stream_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/stream_flags.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/version.h -------------------------------------------------------------------------------- /xz/src/liblzma/api/lzma/vli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/api/lzma/vli.h -------------------------------------------------------------------------------- /xz/src/liblzma/check/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/Makefile.inc -------------------------------------------------------------------------------- /xz/src/liblzma/check/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/check.c -------------------------------------------------------------------------------- /xz/src/liblzma/check/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/check.h -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc32_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc32_fast.c -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc32_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc32_small.c -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc32_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc32_table.c -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc32_table_be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc32_table_be.h -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc32_table_le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc32_table_le.h -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc32_tablegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc32_tablegen.c -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc32_x86.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc32_x86.S -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc64_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc64_fast.c -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc64_small.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc64_small.c -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc64_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc64_table.c -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc64_table_be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc64_table_be.h -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc64_table_le.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc64_table_le.h -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc64_tablegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc64_tablegen.c -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc64_x86.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc64_x86.S -------------------------------------------------------------------------------- /xz/src/liblzma/check/crc_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/crc_macros.h -------------------------------------------------------------------------------- /xz/src/liblzma/check/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/check/sha256.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/Makefile.inc -------------------------------------------------------------------------------- /xz/src/liblzma/common/alone_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/alone_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/alone_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/alone_decoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/alone_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/alone_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/auto_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/auto_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/block_buffer_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/block_buffer_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/block_buffer_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/block_buffer_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/block_buffer_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/block_buffer_encoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/block_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/block_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/block_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/block_decoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/block_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/block_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/block_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/block_encoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/block_header_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/block_header_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/block_header_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/block_header_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/block_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/block_util.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/common.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/common.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/easy_buffer_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/easy_buffer_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/easy_decoder_memusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/easy_decoder_memusage.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/easy_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/easy_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/easy_encoder_memusage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/easy_encoder_memusage.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/easy_preset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/easy_preset.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/easy_preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/easy_preset.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/filter_buffer_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/filter_buffer_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/filter_buffer_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/filter_buffer_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/filter_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/filter_common.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/filter_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/filter_common.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/filter_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/filter_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/filter_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/filter_decoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/filter_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/filter_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/filter_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/filter_encoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/filter_flags_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/filter_flags_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/filter_flags_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/filter_flags_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/hardware_cputhreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/hardware_cputhreads.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/hardware_physmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/hardware_physmem.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/index.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/index.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/index_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/index_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/index_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/index_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/index_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/index_encoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/index_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/index_hash.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/memcmplen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/memcmplen.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/outqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/outqueue.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/outqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/outqueue.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/stream_buffer_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/stream_buffer_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/stream_buffer_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/stream_buffer_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/stream_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/stream_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/stream_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/stream_decoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/stream_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/stream_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/stream_encoder_mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/stream_encoder_mt.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/stream_flags_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/stream_flags_common.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/stream_flags_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/stream_flags_common.h -------------------------------------------------------------------------------- /xz/src/liblzma/common/stream_flags_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/stream_flags_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/stream_flags_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/stream_flags_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/vli_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/vli_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/vli_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/vli_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/common/vli_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/common/vli_size.c -------------------------------------------------------------------------------- /xz/src/liblzma/delta/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/delta/Makefile.inc -------------------------------------------------------------------------------- /xz/src/liblzma/delta/delta_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/delta/delta_common.c -------------------------------------------------------------------------------- /xz/src/liblzma/delta/delta_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/delta/delta_common.h -------------------------------------------------------------------------------- /xz/src/liblzma/delta/delta_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/delta/delta_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/delta/delta_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/delta/delta_decoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/delta/delta_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/delta/delta_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/delta/delta_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/delta/delta_encoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/delta/delta_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/delta/delta_private.h -------------------------------------------------------------------------------- /xz/src/liblzma/liblzma.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/liblzma.map -------------------------------------------------------------------------------- /xz/src/liblzma/liblzma.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/liblzma.pc.in -------------------------------------------------------------------------------- /xz/src/liblzma/liblzma_w32res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/liblzma_w32res.rc -------------------------------------------------------------------------------- /xz/src/liblzma/lz/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lz/Makefile.inc -------------------------------------------------------------------------------- /xz/src/liblzma/lz/lz_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lz/lz_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/lz/lz_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lz/lz_decoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/lz/lz_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lz/lz_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/lz/lz_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lz/lz_encoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/lz/lz_encoder_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lz/lz_encoder_hash.h -------------------------------------------------------------------------------- /xz/src/liblzma/lz/lz_encoder_hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lz/lz_encoder_hash_table.h -------------------------------------------------------------------------------- /xz/src/liblzma/lz/lz_encoder_mf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lz/lz_encoder_mf.c -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/Makefile.inc -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/fastpos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/fastpos.h -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/fastpos_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/fastpos_table.c -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/fastpos_tablegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/fastpos_tablegen.c -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/lzma2_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/lzma2_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/lzma2_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/lzma2_decoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/lzma2_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/lzma2_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/lzma2_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/lzma2_encoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/lzma_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/lzma_common.h -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/lzma_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/lzma_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/lzma_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/lzma_decoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/lzma_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/lzma_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/lzma_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/lzma_encoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/lzma_encoder_optimum_fast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/lzma_encoder_optimum_fast.c -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/lzma_encoder_presets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/lzma_encoder_presets.c -------------------------------------------------------------------------------- /xz/src/liblzma/lzma/lzma_encoder_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/lzma/lzma_encoder_private.h -------------------------------------------------------------------------------- /xz/src/liblzma/rangecoder/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/rangecoder/Makefile.inc -------------------------------------------------------------------------------- /xz/src/liblzma/rangecoder/price.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/rangecoder/price.h -------------------------------------------------------------------------------- /xz/src/liblzma/rangecoder/price_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/rangecoder/price_table.c -------------------------------------------------------------------------------- /xz/src/liblzma/rangecoder/price_tablegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/rangecoder/price_tablegen.c -------------------------------------------------------------------------------- /xz/src/liblzma/rangecoder/range_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/rangecoder/range_common.h -------------------------------------------------------------------------------- /xz/src/liblzma/rangecoder/range_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/rangecoder/range_decoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/rangecoder/range_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/rangecoder/range_encoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/simple/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/Makefile.inc -------------------------------------------------------------------------------- /xz/src/liblzma/simple/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/arm.c -------------------------------------------------------------------------------- /xz/src/liblzma/simple/armthumb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/armthumb.c -------------------------------------------------------------------------------- /xz/src/liblzma/simple/ia64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/ia64.c -------------------------------------------------------------------------------- /xz/src/liblzma/simple/powerpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/powerpc.c -------------------------------------------------------------------------------- /xz/src/liblzma/simple/simple_coder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/simple_coder.c -------------------------------------------------------------------------------- /xz/src/liblzma/simple/simple_coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/simple_coder.h -------------------------------------------------------------------------------- /xz/src/liblzma/simple/simple_decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/simple_decoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/simple/simple_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/simple_decoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/simple/simple_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/simple_encoder.c -------------------------------------------------------------------------------- /xz/src/liblzma/simple/simple_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/simple_encoder.h -------------------------------------------------------------------------------- /xz/src/liblzma/simple/simple_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/simple_private.h -------------------------------------------------------------------------------- /xz/src/liblzma/simple/sparc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/sparc.c -------------------------------------------------------------------------------- /xz/src/liblzma/simple/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/simple/x86.c -------------------------------------------------------------------------------- /xz/src/liblzma/validate_map.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/liblzma/validate_map.sh -------------------------------------------------------------------------------- /xz/src/lzmainfo/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/lzmainfo/Makefile.am -------------------------------------------------------------------------------- /xz/src/lzmainfo/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/lzmainfo/Makefile.in -------------------------------------------------------------------------------- /xz/src/lzmainfo/lzmainfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/lzmainfo/lzmainfo.1 -------------------------------------------------------------------------------- /xz/src/lzmainfo/lzmainfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/lzmainfo/lzmainfo.c -------------------------------------------------------------------------------- /xz/src/lzmainfo/lzmainfo_w32res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/lzmainfo/lzmainfo_w32res.rc -------------------------------------------------------------------------------- /xz/src/scripts/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/scripts/Makefile.am -------------------------------------------------------------------------------- /xz/src/scripts/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/scripts/Makefile.in -------------------------------------------------------------------------------- /xz/src/scripts/xzdiff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/scripts/xzdiff.1 -------------------------------------------------------------------------------- /xz/src/scripts/xzdiff.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/scripts/xzdiff.in -------------------------------------------------------------------------------- /xz/src/scripts/xzgrep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/scripts/xzgrep.1 -------------------------------------------------------------------------------- /xz/src/scripts/xzgrep.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/scripts/xzgrep.in -------------------------------------------------------------------------------- /xz/src/scripts/xzless.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/scripts/xzless.1 -------------------------------------------------------------------------------- /xz/src/scripts/xzless.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/scripts/xzless.in -------------------------------------------------------------------------------- /xz/src/scripts/xzmore.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/scripts/xzmore.1 -------------------------------------------------------------------------------- /xz/src/scripts/xzmore.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/scripts/xzmore.in -------------------------------------------------------------------------------- /xz/src/xz/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/Makefile.am -------------------------------------------------------------------------------- /xz/src/xz/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/Makefile.in -------------------------------------------------------------------------------- /xz/src/xz/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/args.c -------------------------------------------------------------------------------- /xz/src/xz/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/args.h -------------------------------------------------------------------------------- /xz/src/xz/coder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/coder.c -------------------------------------------------------------------------------- /xz/src/xz/coder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/coder.h -------------------------------------------------------------------------------- /xz/src/xz/file_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/file_io.c -------------------------------------------------------------------------------- /xz/src/xz/file_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/file_io.h -------------------------------------------------------------------------------- /xz/src/xz/hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/hardware.c -------------------------------------------------------------------------------- /xz/src/xz/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/hardware.h -------------------------------------------------------------------------------- /xz/src/xz/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/list.c -------------------------------------------------------------------------------- /xz/src/xz/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/list.h -------------------------------------------------------------------------------- /xz/src/xz/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/main.c -------------------------------------------------------------------------------- /xz/src/xz/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/main.h -------------------------------------------------------------------------------- /xz/src/xz/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/message.c -------------------------------------------------------------------------------- /xz/src/xz/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/message.h -------------------------------------------------------------------------------- /xz/src/xz/mytime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/mytime.c -------------------------------------------------------------------------------- /xz/src/xz/mytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/mytime.h -------------------------------------------------------------------------------- /xz/src/xz/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/options.c -------------------------------------------------------------------------------- /xz/src/xz/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/options.h -------------------------------------------------------------------------------- /xz/src/xz/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/private.h -------------------------------------------------------------------------------- /xz/src/xz/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/signals.c -------------------------------------------------------------------------------- /xz/src/xz/signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/signals.h -------------------------------------------------------------------------------- /xz/src/xz/suffix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/suffix.c -------------------------------------------------------------------------------- /xz/src/xz/suffix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/suffix.h -------------------------------------------------------------------------------- /xz/src/xz/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/util.c -------------------------------------------------------------------------------- /xz/src/xz/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/util.h -------------------------------------------------------------------------------- /xz/src/xz/xz.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/xz.1 -------------------------------------------------------------------------------- /xz/src/xz/xz_w32res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xz/xz_w32res.rc -------------------------------------------------------------------------------- /xz/src/xzdec/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xzdec/Makefile.am -------------------------------------------------------------------------------- /xz/src/xzdec/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xzdec/Makefile.in -------------------------------------------------------------------------------- /xz/src/xzdec/lzmadec_w32res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xzdec/lzmadec_w32res.rc -------------------------------------------------------------------------------- /xz/src/xzdec/xzdec.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xzdec/xzdec.1 -------------------------------------------------------------------------------- /xz/src/xzdec/xzdec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xzdec/xzdec.c -------------------------------------------------------------------------------- /xz/src/xzdec/xzdec_w32res.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/src/xzdec/xzdec_w32res.rc -------------------------------------------------------------------------------- /xz/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/Makefile.am -------------------------------------------------------------------------------- /xz/tests/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/Makefile.in -------------------------------------------------------------------------------- /xz/tests/bcj_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/bcj_test.c -------------------------------------------------------------------------------- /xz/tests/compress_prepared_bcj_sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/compress_prepared_bcj_sparc -------------------------------------------------------------------------------- /xz/tests/compress_prepared_bcj_x86: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/compress_prepared_bcj_x86 -------------------------------------------------------------------------------- /xz/tests/create_compress_files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/create_compress_files.c -------------------------------------------------------------------------------- /xz/tests/files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/README -------------------------------------------------------------------------------- /xz/tests/files/bad-0-backward_size.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-0-backward_size.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-0-empty-truncated.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-0-empty-truncated.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-0-footer_magic.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-0-footer_magic.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-0-header_magic.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-0-header_magic.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-0-nonempty_index.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-0-nonempty_index.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-0cat-alone.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-0cat-alone.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-0cat-header_magic.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-0cat-header_magic.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-0catpad-empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-0catpad-empty.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-0pad-empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-0pad-empty.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-block_header-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-block_header-1.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-block_header-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-block_header-2.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-block_header-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-block_header-3.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-block_header-4.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-block_header-4.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-block_header-5.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-block_header-5.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-block_header-6.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-block_header-6.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-check-crc32.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-check-crc32.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-check-crc64.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-check-crc64.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-check-sha256.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-check-sha256.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-lzma2-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-lzma2-1.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-lzma2-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-lzma2-2.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-lzma2-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-lzma2-3.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-lzma2-4.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-lzma2-4.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-lzma2-5.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-lzma2-5.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-lzma2-6.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-lzma2-6.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-lzma2-7.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-lzma2-7.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-lzma2-8.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-lzma2-8.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-stream_flags-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-stream_flags-1.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-stream_flags-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-stream_flags-2.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-stream_flags-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-stream_flags-3.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-vli-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-vli-1.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-1-vli-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-1-vli-2.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-2-compressed_data_padding.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-2-compressed_data_padding.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-2-index-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-2-index-1.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-2-index-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-2-index-2.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-2-index-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-2-index-3.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-2-index-4.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-2-index-4.xz -------------------------------------------------------------------------------- /xz/tests/files/bad-2-index-5.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/bad-2-index-5.xz -------------------------------------------------------------------------------- /xz/tests/files/good-0-empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-0-empty.xz -------------------------------------------------------------------------------- /xz/tests/files/good-0cat-empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-0cat-empty.xz -------------------------------------------------------------------------------- /xz/tests/files/good-0catpad-empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-0catpad-empty.xz -------------------------------------------------------------------------------- /xz/tests/files/good-0pad-empty.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-0pad-empty.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-3delta-lzma2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-3delta-lzma2.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-block_header-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-block_header-1.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-block_header-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-block_header-2.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-block_header-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-block_header-3.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-check-crc32.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-check-crc32.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-check-crc64.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-check-crc64.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-check-none.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-check-none.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-check-sha256.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-check-sha256.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-delta-lzma2.tiff.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-delta-lzma2.tiff.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-lzma2-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-lzma2-1.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-lzma2-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-lzma2-2.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-lzma2-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-lzma2-3.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-lzma2-4.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-lzma2-4.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-lzma2-5.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-lzma2-5.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-sparc-lzma2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-sparc-lzma2.xz -------------------------------------------------------------------------------- /xz/tests/files/good-1-x86-lzma2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-1-x86-lzma2.xz -------------------------------------------------------------------------------- /xz/tests/files/good-2-lzma2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/good-2-lzma2.xz -------------------------------------------------------------------------------- /xz/tests/files/unsupported-block_header.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/unsupported-block_header.xz -------------------------------------------------------------------------------- /xz/tests/files/unsupported-check.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/unsupported-check.xz -------------------------------------------------------------------------------- /xz/tests/files/unsupported-filter_flags-1.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/unsupported-filter_flags-1.xz -------------------------------------------------------------------------------- /xz/tests/files/unsupported-filter_flags-2.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/unsupported-filter_flags-2.xz -------------------------------------------------------------------------------- /xz/tests/files/unsupported-filter_flags-3.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/files/unsupported-filter_flags-3.xz -------------------------------------------------------------------------------- /xz/tests/test_bcj_exact_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/test_bcj_exact_size.c -------------------------------------------------------------------------------- /xz/tests/test_block_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/test_block_header.c -------------------------------------------------------------------------------- /xz/tests/test_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/test_check.c -------------------------------------------------------------------------------- /xz/tests/test_compress.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/test_compress.sh -------------------------------------------------------------------------------- /xz/tests/test_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/test_files.sh -------------------------------------------------------------------------------- /xz/tests/test_filter_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/test_filter_flags.c -------------------------------------------------------------------------------- /xz/tests/test_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/test_index.c -------------------------------------------------------------------------------- /xz/tests/test_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/test_scripts.sh -------------------------------------------------------------------------------- /xz/tests/test_stream_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/test_stream_flags.c -------------------------------------------------------------------------------- /xz/tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/tests.h -------------------------------------------------------------------------------- /xz/tests/xzgrep_expected_output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/tests/xzgrep_expected_output -------------------------------------------------------------------------------- /xz/windows/INSTALL-MSVC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/windows/INSTALL-MSVC.txt -------------------------------------------------------------------------------- /xz/windows/INSTALL-MinGW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/windows/INSTALL-MinGW.txt -------------------------------------------------------------------------------- /xz/windows/README-Windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/windows/README-Windows.txt -------------------------------------------------------------------------------- /xz/windows/build.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/windows/build.bash -------------------------------------------------------------------------------- /xz/windows/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/windows/config.h -------------------------------------------------------------------------------- /xz/windows/liblzma.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/windows/liblzma.vcxproj -------------------------------------------------------------------------------- /xz/windows/liblzma_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/windows/liblzma_dll.vcxproj -------------------------------------------------------------------------------- /xz/windows/xz_win.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/xz/windows/xz_win.sln -------------------------------------------------------------------------------- /zlib/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/Android.mk -------------------------------------------------------------------------------- /zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/ChangeLog -------------------------------------------------------------------------------- /zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/FAQ -------------------------------------------------------------------------------- /zlib/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/INDEX -------------------------------------------------------------------------------- /zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/Makefile -------------------------------------------------------------------------------- /zlib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/Makefile.in -------------------------------------------------------------------------------- /zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/README -------------------------------------------------------------------------------- /zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/adler32.c -------------------------------------------------------------------------------- /zlib/amiga/Makefile.pup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/amiga/Makefile.pup -------------------------------------------------------------------------------- /zlib/amiga/Makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/amiga/Makefile.sas -------------------------------------------------------------------------------- /zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/compress.c -------------------------------------------------------------------------------- /zlib/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/configure -------------------------------------------------------------------------------- /zlib/contrib/README.contrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/README.contrib -------------------------------------------------------------------------------- /zlib/contrib/ada/buffer_demo.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/ada/buffer_demo.adb -------------------------------------------------------------------------------- /zlib/contrib/ada/mtest.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/ada/mtest.adb -------------------------------------------------------------------------------- /zlib/contrib/ada/read.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/ada/read.adb -------------------------------------------------------------------------------- /zlib/contrib/ada/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/ada/readme.txt -------------------------------------------------------------------------------- /zlib/contrib/ada/test.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/ada/test.adb -------------------------------------------------------------------------------- /zlib/contrib/ada/zlib-streams.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/ada/zlib-streams.adb -------------------------------------------------------------------------------- /zlib/contrib/ada/zlib-streams.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/ada/zlib-streams.ads -------------------------------------------------------------------------------- /zlib/contrib/ada/zlib-thin.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/ada/zlib-thin.adb -------------------------------------------------------------------------------- /zlib/contrib/ada/zlib-thin.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/ada/zlib-thin.ads -------------------------------------------------------------------------------- /zlib/contrib/ada/zlib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/ada/zlib.adb -------------------------------------------------------------------------------- /zlib/contrib/ada/zlib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/ada/zlib.ads -------------------------------------------------------------------------------- /zlib/contrib/ada/zlib.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/ada/zlib.gpr -------------------------------------------------------------------------------- /zlib/contrib/amd64/amd64-match.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/amd64/amd64-match.S -------------------------------------------------------------------------------- /zlib/contrib/asm686/README.686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/asm686/README.686 -------------------------------------------------------------------------------- /zlib/contrib/asm686/match.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/asm686/match.S -------------------------------------------------------------------------------- /zlib/contrib/blast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/blast/Makefile -------------------------------------------------------------------------------- /zlib/contrib/blast/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/blast/README -------------------------------------------------------------------------------- /zlib/contrib/blast/blast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/blast/blast.c -------------------------------------------------------------------------------- /zlib/contrib/blast/blast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/blast/blast.h -------------------------------------------------------------------------------- /zlib/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/blast/test.pk -------------------------------------------------------------------------------- /zlib/contrib/blast/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/blast/test.txt -------------------------------------------------------------------------------- /zlib/contrib/delphi/ZLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/delphi/ZLib.pas -------------------------------------------------------------------------------- /zlib/contrib/delphi/ZLibConst.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/delphi/ZLibConst.pas -------------------------------------------------------------------------------- /zlib/contrib/delphi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/delphi/readme.txt -------------------------------------------------------------------------------- /zlib/contrib/delphi/zlibd32.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/delphi/zlibd32.mak -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib.build -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib.chm -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib.sln -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib/AssemblyInfo.cs -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib/CodecBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib/CodecBase.cs -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib/Deflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib/Deflater.cs -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib/DotZLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib/DotZLib.cs -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib/DotZLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib/DotZLib.csproj -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib/GZipStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib/GZipStream.cs -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib/Inflater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib/Inflater.cs -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/DotZLib/UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/DotZLib/UnitTests.cs -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/LICENSE_1_0.txt -------------------------------------------------------------------------------- /zlib/contrib/dotzlib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/dotzlib/readme.txt -------------------------------------------------------------------------------- /zlib/contrib/gcc_gvmat64/gvmat64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/gcc_gvmat64/gvmat64.S -------------------------------------------------------------------------------- /zlib/contrib/infback9/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/infback9/README -------------------------------------------------------------------------------- /zlib/contrib/infback9/infback9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/infback9/infback9.c -------------------------------------------------------------------------------- /zlib/contrib/infback9/infback9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/infback9/infback9.h -------------------------------------------------------------------------------- /zlib/contrib/infback9/inffix9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/infback9/inffix9.h -------------------------------------------------------------------------------- /zlib/contrib/infback9/inflate9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/infback9/inflate9.h -------------------------------------------------------------------------------- /zlib/contrib/infback9/inftree9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/infback9/inftree9.c -------------------------------------------------------------------------------- /zlib/contrib/infback9/inftree9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/infback9/inftree9.h -------------------------------------------------------------------------------- /zlib/contrib/inflate86/inffas86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/inflate86/inffas86.c -------------------------------------------------------------------------------- /zlib/contrib/inflate86/inffast.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/inflate86/inffast.S -------------------------------------------------------------------------------- /zlib/contrib/iostream/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/iostream/test.cpp -------------------------------------------------------------------------------- /zlib/contrib/iostream/zfstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/iostream/zfstream.cpp -------------------------------------------------------------------------------- /zlib/contrib/iostream/zfstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/iostream/zfstream.h -------------------------------------------------------------------------------- /zlib/contrib/iostream2/zstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/iostream2/zstream.h -------------------------------------------------------------------------------- /zlib/contrib/iostream2/zstream_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/iostream2/zstream_test.cpp -------------------------------------------------------------------------------- /zlib/contrib/iostream3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/iostream3/README -------------------------------------------------------------------------------- /zlib/contrib/iostream3/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/iostream3/TODO -------------------------------------------------------------------------------- /zlib/contrib/iostream3/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/iostream3/test.cc -------------------------------------------------------------------------------- /zlib/contrib/iostream3/zfstream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/iostream3/zfstream.cc -------------------------------------------------------------------------------- /zlib/contrib/iostream3/zfstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/iostream3/zfstream.h -------------------------------------------------------------------------------- /zlib/contrib/masmx64/bld_ml64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/masmx64/bld_ml64.bat -------------------------------------------------------------------------------- /zlib/contrib/masmx64/gvmat64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/masmx64/gvmat64.asm -------------------------------------------------------------------------------- /zlib/contrib/masmx64/inffas8664.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/masmx64/inffas8664.c -------------------------------------------------------------------------------- /zlib/contrib/masmx64/inffasx64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/masmx64/inffasx64.asm -------------------------------------------------------------------------------- /zlib/contrib/masmx64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/masmx64/readme.txt -------------------------------------------------------------------------------- /zlib/contrib/masmx86/bld_ml32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/masmx86/bld_ml32.bat -------------------------------------------------------------------------------- /zlib/contrib/masmx86/inffas32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/masmx86/inffas32.asm -------------------------------------------------------------------------------- /zlib/contrib/masmx86/match686.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/masmx86/match686.asm -------------------------------------------------------------------------------- /zlib/contrib/masmx86/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/masmx86/readme.txt -------------------------------------------------------------------------------- /zlib/contrib/minizip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/Makefile -------------------------------------------------------------------------------- /zlib/contrib/minizip/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/Makefile.am -------------------------------------------------------------------------------- /zlib/contrib/minizip/MiniZip64_Changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/MiniZip64_Changes.txt -------------------------------------------------------------------------------- /zlib/contrib/minizip/MiniZip64_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/MiniZip64_info.txt -------------------------------------------------------------------------------- /zlib/contrib/minizip/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/configure.ac -------------------------------------------------------------------------------- /zlib/contrib/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/crypt.h -------------------------------------------------------------------------------- /zlib/contrib/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/ioapi.c -------------------------------------------------------------------------------- /zlib/contrib/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/ioapi.h -------------------------------------------------------------------------------- /zlib/contrib/minizip/iowin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/iowin32.c -------------------------------------------------------------------------------- /zlib/contrib/minizip/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/iowin32.h -------------------------------------------------------------------------------- /zlib/contrib/minizip/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/make_vms.com -------------------------------------------------------------------------------- /zlib/contrib/minizip/miniunz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/miniunz.c -------------------------------------------------------------------------------- /zlib/contrib/minizip/miniunzip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/miniunzip.1 -------------------------------------------------------------------------------- /zlib/contrib/minizip/minizip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/minizip.1 -------------------------------------------------------------------------------- /zlib/contrib/minizip/minizip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/minizip.c -------------------------------------------------------------------------------- /zlib/contrib/minizip/minizip.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/minizip.pc.in -------------------------------------------------------------------------------- /zlib/contrib/minizip/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/mztools.c -------------------------------------------------------------------------------- /zlib/contrib/minizip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/mztools.h -------------------------------------------------------------------------------- /zlib/contrib/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/unzip.c -------------------------------------------------------------------------------- /zlib/contrib/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/unzip.h -------------------------------------------------------------------------------- /zlib/contrib/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/zip.c -------------------------------------------------------------------------------- /zlib/contrib/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/minizip/zip.h -------------------------------------------------------------------------------- /zlib/contrib/pascal/example.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/pascal/example.pas -------------------------------------------------------------------------------- /zlib/contrib/pascal/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/pascal/readme.txt -------------------------------------------------------------------------------- /zlib/contrib/pascal/zlibd32.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/pascal/zlibd32.mak -------------------------------------------------------------------------------- /zlib/contrib/pascal/zlibpas.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/pascal/zlibpas.pas -------------------------------------------------------------------------------- /zlib/contrib/puff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/puff/Makefile -------------------------------------------------------------------------------- /zlib/contrib/puff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/puff/README -------------------------------------------------------------------------------- /zlib/contrib/puff/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/puff/puff.c -------------------------------------------------------------------------------- /zlib/contrib/puff/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/puff/puff.h -------------------------------------------------------------------------------- /zlib/contrib/puff/pufftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/puff/pufftest.c -------------------------------------------------------------------------------- /zlib/contrib/puff/zeros.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/puff/zeros.raw -------------------------------------------------------------------------------- /zlib/contrib/testzlib/testzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/testzlib/testzlib.c -------------------------------------------------------------------------------- /zlib/contrib/testzlib/testzlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/testzlib/testzlib.txt -------------------------------------------------------------------------------- /zlib/contrib/untgz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/untgz/Makefile -------------------------------------------------------------------------------- /zlib/contrib/untgz/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/untgz/Makefile.msc -------------------------------------------------------------------------------- /zlib/contrib/untgz/untgz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/untgz/untgz.c -------------------------------------------------------------------------------- /zlib/contrib/vstudio/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/readme.txt -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc10/miniunz.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc10/miniunz.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc10/minizip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc10/minizip.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc10/testzlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc10/testzlib.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc10/testzlibdll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc10/testzlibdll.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc10/zlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc10/zlib.rc -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc10/zlibstat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc10/zlibstat.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc10/zlibvc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc10/zlibvc.def -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc10/zlibvc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc10/zlibvc.sln -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc10/zlibvc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc10/zlibvc.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc11/miniunz.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc11/miniunz.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc11/minizip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc11/minizip.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc11/testzlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc11/testzlib.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc11/testzlibdll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc11/testzlibdll.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc11/zlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc11/zlib.rc -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc11/zlibstat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc11/zlibstat.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc11/zlibvc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc11/zlibvc.def -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc11/zlibvc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc11/zlibvc.sln -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc11/zlibvc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc11/zlibvc.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc12/miniunz.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc12/miniunz.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc12/minizip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc12/minizip.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc12/testzlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc12/testzlib.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc12/testzlibdll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc12/testzlibdll.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc12/zlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc12/zlib.rc -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc12/zlibstat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc12/zlibstat.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc12/zlibvc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc12/zlibvc.def -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc12/zlibvc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc12/zlibvc.sln -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc12/zlibvc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc12/zlibvc.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc14/miniunz.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc14/miniunz.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc14/minizip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc14/minizip.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc14/testzlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc14/testzlib.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc14/testzlibdll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc14/testzlibdll.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc14/zlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc14/zlib.rc -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc14/zlibstat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc14/zlibstat.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc14/zlibvc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc14/zlibvc.def -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc14/zlibvc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc14/zlibvc.sln -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc14/zlibvc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc14/zlibvc.vcxproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc9/miniunz.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc9/miniunz.vcproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc9/minizip.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc9/minizip.vcproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc9/testzlib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc9/testzlib.vcproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc9/testzlibdll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc9/testzlibdll.vcproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc9/zlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc9/zlib.rc -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc9/zlibstat.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc9/zlibstat.vcproj -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc9/zlibvc.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc9/zlibvc.def -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc9/zlibvc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc9/zlibvc.sln -------------------------------------------------------------------------------- /zlib/contrib/vstudio/vc9/zlibvc.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/contrib/vstudio/vc9/zlibvc.vcproj -------------------------------------------------------------------------------- /zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/crc32.c -------------------------------------------------------------------------------- /zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/crc32.h -------------------------------------------------------------------------------- /zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/deflate.c -------------------------------------------------------------------------------- /zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/deflate.h -------------------------------------------------------------------------------- /zlib/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/doc/algorithm.txt -------------------------------------------------------------------------------- /zlib/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/doc/rfc1950.txt -------------------------------------------------------------------------------- /zlib/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/doc/rfc1951.txt -------------------------------------------------------------------------------- /zlib/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/doc/rfc1952.txt -------------------------------------------------------------------------------- /zlib/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/doc/txtvsbin.txt -------------------------------------------------------------------------------- /zlib/examples/README.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/examples/README.examples -------------------------------------------------------------------------------- /zlib/examples/enough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/examples/enough.c -------------------------------------------------------------------------------- /zlib/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/examples/fitblk.c -------------------------------------------------------------------------------- /zlib/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/examples/gun.c -------------------------------------------------------------------------------- /zlib/examples/gzappend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/examples/gzappend.c -------------------------------------------------------------------------------- /zlib/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/examples/gzjoin.c -------------------------------------------------------------------------------- /zlib/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/examples/gzlog.c -------------------------------------------------------------------------------- /zlib/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/examples/gzlog.h -------------------------------------------------------------------------------- /zlib/examples/zlib_how.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/examples/zlib_how.html -------------------------------------------------------------------------------- /zlib/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/examples/zpipe.c -------------------------------------------------------------------------------- /zlib/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/examples/zran.c -------------------------------------------------------------------------------- /zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/gzclose.c -------------------------------------------------------------------------------- /zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/gzguts.h -------------------------------------------------------------------------------- /zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/gzlib.c -------------------------------------------------------------------------------- /zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/gzread.c -------------------------------------------------------------------------------- /zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/gzwrite.c -------------------------------------------------------------------------------- /zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/infback.c -------------------------------------------------------------------------------- /zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/inffast.c -------------------------------------------------------------------------------- /zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/inffast.h -------------------------------------------------------------------------------- /zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/inffixed.h -------------------------------------------------------------------------------- /zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/inflate.c -------------------------------------------------------------------------------- /zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/inflate.h -------------------------------------------------------------------------------- /zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/inftrees.c -------------------------------------------------------------------------------- /zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/inftrees.h -------------------------------------------------------------------------------- /zlib/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/make_vms.com -------------------------------------------------------------------------------- /zlib/msdos/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/msdos/Makefile.bor -------------------------------------------------------------------------------- /zlib/msdos/Makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/msdos/Makefile.dj2 -------------------------------------------------------------------------------- /zlib/msdos/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/msdos/Makefile.emx -------------------------------------------------------------------------------- /zlib/msdos/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/msdos/Makefile.msc -------------------------------------------------------------------------------- /zlib/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/msdos/Makefile.tc -------------------------------------------------------------------------------- /zlib/nintendods/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/nintendods/Makefile -------------------------------------------------------------------------------- /zlib/nintendods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/nintendods/README -------------------------------------------------------------------------------- /zlib/old/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/old/Makefile.emx -------------------------------------------------------------------------------- /zlib/old/Makefile.riscos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/old/Makefile.riscos -------------------------------------------------------------------------------- /zlib/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/old/README -------------------------------------------------------------------------------- /zlib/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/old/descrip.mms -------------------------------------------------------------------------------- /zlib/old/os2/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/old/os2/Makefile.os2 -------------------------------------------------------------------------------- /zlib/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/old/os2/zlib.def -------------------------------------------------------------------------------- /zlib/old/visual-basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/old/visual-basic.txt -------------------------------------------------------------------------------- /zlib/os400/README400: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/os400/README400 -------------------------------------------------------------------------------- /zlib/os400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/os400/bndsrc -------------------------------------------------------------------------------- /zlib/os400/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/os400/make.sh -------------------------------------------------------------------------------- /zlib/os400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/os400/zlib.inc -------------------------------------------------------------------------------- /zlib/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/qnx/package.qpg -------------------------------------------------------------------------------- /zlib/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/test/example.c -------------------------------------------------------------------------------- /zlib/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/test/infcover.c -------------------------------------------------------------------------------- /zlib/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/test/minigzip.c -------------------------------------------------------------------------------- /zlib/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/treebuild.xml -------------------------------------------------------------------------------- /zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/trees.c -------------------------------------------------------------------------------- /zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/trees.h -------------------------------------------------------------------------------- /zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/uncompr.c -------------------------------------------------------------------------------- /zlib/watcom/watcom_f.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/watcom/watcom_f.mak -------------------------------------------------------------------------------- /zlib/watcom/watcom_l.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/watcom/watcom_l.mak -------------------------------------------------------------------------------- /zlib/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /zlib/win32/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/win32/Makefile.bor -------------------------------------------------------------------------------- /zlib/win32/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/win32/Makefile.gcc -------------------------------------------------------------------------------- /zlib/win32/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/win32/Makefile.msc -------------------------------------------------------------------------------- /zlib/win32/README-WIN32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/win32/README-WIN32.txt -------------------------------------------------------------------------------- /zlib/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/win32/VisualC.txt -------------------------------------------------------------------------------- /zlib/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/win32/zlib.def -------------------------------------------------------------------------------- /zlib/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/win32/zlib1.rc -------------------------------------------------------------------------------- /zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/zconf.h -------------------------------------------------------------------------------- /zlib/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/zconf.h.cmakein -------------------------------------------------------------------------------- /zlib/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/zconf.h.in -------------------------------------------------------------------------------- /zlib/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/zlib.3 -------------------------------------------------------------------------------- /zlib/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/zlib.3.pdf -------------------------------------------------------------------------------- /zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/zlib.h -------------------------------------------------------------------------------- /zlib/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/zlib.map -------------------------------------------------------------------------------- /zlib/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/zlib.pc.cmakein -------------------------------------------------------------------------------- /zlib/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/zlib.pc.in -------------------------------------------------------------------------------- /zlib/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/zlib2ansi -------------------------------------------------------------------------------- /zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/zutil.c -------------------------------------------------------------------------------- /zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topjohnwu/ndk-compression/HEAD/zlib/zutil.h --------------------------------------------------------------------------------