stage1/zstd/LICENSE | 30 + stage1/zstd/lib/common/bitstream.h | 478 +++ stage1/zstd/lib/common/compiler.h | 335 ++ stage1/zstd/lib/common/cpu.h | 213 ++ stage1/zstd/lib/common/debug.c | 24 + stage1/zstd/lib/common/debug.h | 107 + stage1/zstd/lib/common/entropy_common.c | 368 +++ stage1/zstd/lib/common/error_private.c | 56 + stage1/zstd/lib/common/error_private.h | 159 + stage1/zstd/lib/common/fse.h | 717 ++++ stage1/zstd/lib/common/fse_decompress.c | 403 +++ stage1/zstd/lib/common/huf.h | 364 ++ stage1/zstd/lib/common/mem.h | 442 +++ stage1/zstd/lib/common/pool.c | 355 ++ stage1/zstd/lib/common/pool.h | 84 + stage1/zstd/lib/common/portability_macros.h | 137 + stage1/zstd/lib/common/threading.c | 122 + stage1/zstd/lib/common/threading.h | 155 + stage1/zstd/lib/common/xxhash.c | 24 + stage1/zstd/lib/common/xxhash.h | 5686 ++++++++++++++++++++++++++++++++ stage1/zstd/lib/common/zstd_common.c | 83 + stage1/zstd/lib/common/zstd_deps.h | 111 + stage1/zstd/lib/common/zstd_internal.h | 493 +++ stage1/zstd/lib/common/zstd_trace.h | 163 + stage1/zstd/lib/decompress/huf_decompress.c | 1889 +++++++++++ stage1/zstd/lib/decompress/huf_decompress_amd64.S | 585 ++++ stage1/zstd/lib/decompress/zstd_ddict.c | 244 ++ stage1/zstd/lib/decompress/zstd_ddict.h | 44 + stage1/zstd/lib/decompress/zstd_decompress.c | 2230 +++++++++++++ stage1/zstd/lib/decompress/zstd_decompress_block.c | 2072 ++++++++++++ stage1/zstd/lib/decompress/zstd_decompress_block.h | 68 + stage1/zstd/lib/decompress/zstd_decompress_internal.h | 236 ++ stage1/zstd/lib/zstd.h | 2575 +++++++++++++++ stage1/zstd/lib/zstd_errors.h | 95 + 34 files changed, 21147 insertions(+)