├── CMakeLists.txt ├── LICENSE ├── README.md ├── dependencies ├── c-blosc-1.21.6 │ ├── .editorconfig │ ├── .github │ │ ├── dependabot.yml │ │ └── workflows │ │ │ ├── cmake.yml │ │ │ └── fuzz.yml │ ├── .gitignore │ ├── .mailmap │ ├── ANNOUNCE.rst │ ├── CMakeLists.txt │ ├── COMPILING_WITH_WHEELS.rst │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── FUNDING.yml │ ├── LICENSE.txt │ ├── LICENSES │ │ ├── BITSHUFFLE.txt │ │ ├── FASTLZ.txt │ │ ├── LZ4.txt │ │ ├── SNAPPY.txt │ │ ├── STDINT.txt │ │ ├── ZLIB-NG.txt │ │ └── ZLIB.txt │ ├── README.md │ ├── README_CHUNK_FORMAT.rst │ ├── README_THREADED.rst │ ├── RELEASE_NOTES.rst │ ├── RELEASING.rst │ ├── THANKS.rst │ ├── bench │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.mingw │ │ ├── bench.c │ │ └── plot-speeds.py │ ├── blosc.pc.in │ ├── blosc │ │ ├── CMakeLists.txt │ │ ├── bitshuffle-avx2.c │ │ ├── bitshuffle-avx2.h │ │ ├── bitshuffle-generic.c │ │ ├── bitshuffle-generic.h │ │ ├── bitshuffle-sse2.c │ │ ├── bitshuffle-sse2.h │ │ ├── blosc-common.h │ │ ├── blosc-comp-features.h │ │ ├── blosc-export.h │ │ ├── blosc.c │ │ ├── blosc.h │ │ ├── blosclz.c │ │ ├── blosclz.h │ │ ├── config.h.in │ │ ├── fastcopy.c │ │ ├── fastcopy.h │ │ ├── shuffle-avx2.c │ │ ├── shuffle-avx2.h │ │ ├── shuffle-generic.c │ │ ├── shuffle-generic.h │ │ ├── shuffle-sse2.c │ │ ├── shuffle-sse2.h │ │ ├── shuffle.c │ │ ├── shuffle.h │ │ └── win32 │ │ │ ├── pthread.c │ │ │ ├── pthread.h │ │ │ └── stdint-windows.h │ ├── cmake │ │ ├── FindLZ4.cmake │ │ ├── FindSnappy.cmake │ │ └── FindZstd.cmake │ ├── cmake_uninstall.cmake.in │ ├── code_of_conduct.md │ ├── compat │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── blosc-1.11.1-blosclz.cdata │ │ ├── blosc-1.11.1-lz4.cdata │ │ ├── blosc-1.11.1-lz4hc.cdata │ │ ├── blosc-1.11.1-snappy.cdata │ │ ├── blosc-1.11.1-zlib.cdata │ │ ├── blosc-1.11.1-zstd.cdata │ │ ├── blosc-1.14.0-blosclz.cdata │ │ ├── blosc-1.14.0-lz4.cdata │ │ ├── blosc-1.14.0-lz4hc.cdata │ │ ├── blosc-1.14.0-snappy.cdata │ │ ├── blosc-1.14.0-zlib.cdata │ │ ├── blosc-1.14.0-zstd.cdata │ │ ├── blosc-1.18.0-blosclz-bitshuffle.cdata │ │ ├── blosc-1.18.0-blosclz.cdata │ │ ├── blosc-1.18.0-lz4-bitshuffle.cdata │ │ ├── blosc-1.18.0-lz4.cdata │ │ ├── blosc-1.18.0-lz4hc.cdata │ │ ├── blosc-1.18.0-zlib.cdata │ │ ├── blosc-1.18.0-zstd.cdata │ │ ├── blosc-1.3.0-blosclz.cdata │ │ ├── blosc-1.3.0-lz4.cdata │ │ ├── blosc-1.3.0-lz4hc.cdata │ │ ├── blosc-1.3.0-snappy.cdata │ │ ├── blosc-1.3.0-zlib.cdata │ │ ├── blosc-1.7.0-blosclz.cdata │ │ ├── blosc-1.7.0-lz4.cdata │ │ ├── blosc-1.7.0-lz4hc.cdata │ │ ├── blosc-1.7.0-snappy.cdata │ │ ├── blosc-1.7.0-zlib.cdata │ │ └── filegen.c │ ├── examples │ │ ├── README.rst │ │ ├── many_compressors.c │ │ ├── multithread.c │ │ ├── noinit.c │ │ ├── simple.c │ │ └── win-dynamic-linking.c │ ├── internal-complibs │ │ ├── lz4-1.9.4 │ │ │ ├── lz4.c │ │ │ ├── lz4.h │ │ │ ├── lz4hc.c │ │ │ └── lz4hc.h │ │ ├── zlib-1.3.1 │ │ │ ├── CMakeLists.txt │ │ │ ├── ChangeLog │ │ │ ├── FAQ │ │ │ ├── INDEX │ │ │ ├── LICENSE │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── iostream │ │ │ │ │ ├── test.cpp │ │ │ │ │ ├── zfstream.cpp │ │ │ │ │ └── zfstream.h │ │ │ │ ├── iostream2 │ │ │ │ │ ├── zstream.h │ │ │ │ │ └── zstream_test.cpp │ │ │ │ ├── iostream3 │ │ │ │ │ ├── README │ │ │ │ │ ├── TODO │ │ │ │ │ ├── test.cc │ │ │ │ │ ├── zfstream.cc │ │ │ │ │ └── zfstream.h │ │ │ │ ├── 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 │ │ │ │ ├── nuget │ │ │ │ │ ├── nuget.csproj │ │ │ │ │ └── nuget.sln │ │ │ │ ├── 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 │ │ │ │ │ ├── vc17 │ │ │ │ │ ├── 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 │ │ │ │ ├── crc-doc.1.0.pdf │ │ │ │ ├── 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 │ │ │ │ ├── gznorm.c │ │ │ │ ├── zlib_how.html │ │ │ │ ├── zpipe.c │ │ │ │ ├── zran.c │ │ │ │ └── zran.h │ │ │ ├── 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 │ │ │ ├── zutil.c │ │ │ └── zutil.h │ │ └── zstd-1.5.6 │ │ │ ├── .gitignore │ │ │ ├── BUCK │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── common │ │ │ ├── allocations.h │ │ │ ├── bits.h │ │ │ ├── bitstream.h │ │ │ ├── compiler.h │ │ │ ├── cpu.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── entropy_common.c │ │ │ ├── error_private.c │ │ │ ├── error_private.h │ │ │ ├── fse.h │ │ │ ├── fse_decompress.c │ │ │ ├── huf.h │ │ │ ├── mem.h │ │ │ ├── pool.c │ │ │ ├── pool.h │ │ │ ├── portability_macros.h │ │ │ ├── threading.c │ │ │ ├── threading.h │ │ │ ├── xxhash.c │ │ │ ├── xxhash.h │ │ │ ├── zstd_common.c │ │ │ ├── zstd_deps.h │ │ │ ├── zstd_internal.h │ │ │ └── zstd_trace.h │ │ │ ├── compress │ │ │ ├── clevels.h │ │ │ ├── fse_compress.c │ │ │ ├── hist.c │ │ │ ├── hist.h │ │ │ ├── huf_compress.c │ │ │ ├── zstd_compress.c │ │ │ ├── zstd_compress_internal.h │ │ │ ├── zstd_compress_literals.c │ │ │ ├── zstd_compress_literals.h │ │ │ ├── zstd_compress_sequences.c │ │ │ ├── zstd_compress_sequences.h │ │ │ ├── zstd_compress_superblock.c │ │ │ ├── zstd_compress_superblock.h │ │ │ ├── zstd_cwksp.h │ │ │ ├── zstd_double_fast.c │ │ │ ├── zstd_double_fast.h │ │ │ ├── zstd_fast.c │ │ │ ├── zstd_fast.h │ │ │ ├── zstd_lazy.c │ │ │ ├── zstd_lazy.h │ │ │ ├── zstd_ldm.c │ │ │ ├── zstd_ldm.h │ │ │ ├── zstd_ldm_geartab.h │ │ │ ├── zstd_opt.c │ │ │ ├── zstd_opt.h │ │ │ ├── zstdmt_compress.c │ │ │ └── zstdmt_compress.h │ │ │ ├── decompress │ │ │ ├── huf_decompress.c │ │ │ ├── huf_decompress_amd64.S │ │ │ ├── zstd_ddict.c │ │ │ ├── zstd_ddict.h │ │ │ ├── zstd_decompress.c │ │ │ ├── zstd_decompress_block.c │ │ │ ├── zstd_decompress_block.h │ │ │ └── zstd_decompress_internal.h │ │ │ ├── deprecated │ │ │ ├── zbuff.h │ │ │ ├── zbuff_common.c │ │ │ ├── zbuff_compress.c │ │ │ └── zbuff_decompress.c │ │ │ ├── dictBuilder │ │ │ ├── cover.c │ │ │ ├── cover.h │ │ │ ├── divsufsort.c │ │ │ ├── divsufsort.h │ │ │ ├── fastcover.c │ │ │ └── zdict.c │ │ │ ├── dll │ │ │ └── example │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── build_package.bat │ │ │ │ ├── fullbench-dll.sln │ │ │ │ └── fullbench-dll.vcxproj │ │ │ ├── legacy │ │ │ ├── zstd_legacy.h │ │ │ ├── zstd_v01.c │ │ │ ├── zstd_v01.h │ │ │ ├── zstd_v02.c │ │ │ ├── zstd_v02.h │ │ │ ├── zstd_v03.c │ │ │ ├── zstd_v03.h │ │ │ ├── zstd_v04.c │ │ │ ├── zstd_v04.h │ │ │ ├── zstd_v05.c │ │ │ ├── zstd_v05.h │ │ │ ├── zstd_v06.c │ │ │ ├── zstd_v06.h │ │ │ ├── zstd_v07.c │ │ │ └── zstd_v07.h │ │ │ ├── libzstd.mk │ │ │ ├── libzstd.pc.in │ │ │ ├── module.modulemap │ │ │ ├── zdict.h │ │ │ ├── zstd.h │ │ │ └── zstd_errors.h │ └── tests │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── check_symbols.py │ │ ├── fuzz │ │ ├── CMakeLists.txt │ │ ├── fuzz_compress.c │ │ ├── fuzz_decompress.c │ │ └── standalone.c │ │ ├── gcc-segfault-issue.c │ │ ├── print_versions.c │ │ ├── test_all.sh │ │ ├── test_api.c │ │ ├── test_bitshuffle_leftovers.c │ │ ├── test_common.h │ │ ├── test_compress_roundtrip.c │ │ ├── test_compress_roundtrip.csv │ │ ├── test_compressor.c │ │ ├── test_forksafe.c │ │ ├── test_getitem.c │ │ ├── test_getitem.csv │ │ ├── test_maxout.c │ │ ├── test_noinit.c │ │ ├── test_nolock.c │ │ ├── test_nthreads.c │ │ ├── test_shuffle_roundtrip_avx2.c │ │ ├── test_shuffle_roundtrip_avx2.csv │ │ ├── test_shuffle_roundtrip_generic.c │ │ ├── test_shuffle_roundtrip_generic.csv │ │ ├── test_shuffle_roundtrip_sse2.c │ │ └── test_shuffle_roundtrip_sse2.csv ├── c-blosc2-2.15.2 │ ├── .editorconfig │ ├── .github │ │ ├── ISSUE_TEMPLATE │ │ │ └── bug_report.md │ │ ├── dependabot.yml │ │ └── workflows │ │ │ ├── cmake.yml │ │ │ └── fuzz.yml │ ├── .gitignore │ ├── .guix-channel │ ├── .guix │ │ └── modules │ │ │ └── c-blosc2-package.scm │ ├── .mailmap │ ├── .readthedocs.yaml │ ├── ANNOUNCE.md │ ├── Blosc2Config.cmake.in │ ├── CMakeLists.txt │ ├── COMPILING_WITH_WHEELS.rst │ ├── CONTRIBUTING.rst │ ├── DEVELOPING-GUIDE.rst │ ├── FAQ.md │ ├── FUNDING.yml │ ├── LICENSE.txt │ ├── LICENSES │ │ ├── BITSHUFFLE.txt │ │ ├── FASTLZ.txt │ │ ├── LZ4.txt │ │ ├── ZLIB.txt │ │ └── ZSTD.txt │ ├── README.rst │ ├── README_ARM.rst │ ├── README_B2ND_METALAYER.rst │ ├── README_CFRAME_FORMAT.rst │ ├── README_CHUNK_FORMAT.rst │ ├── README_EXTENSION_FILENAMES.rst │ ├── README_FUZZER.md │ ├── README_SFRAME_FORMAT.rst │ ├── README_THREADED.rst │ ├── RELEASE_NOTES.md │ ├── RELEASING.rst │ ├── ROADMAP.rst │ ├── THANKS.rst │ ├── TODO-refactorization.txt │ ├── bench │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.mingw │ │ ├── aggregate_multiple.py │ │ ├── b2bench.c │ │ ├── b2nd │ │ │ ├── CMakeLists.txt │ │ │ ├── bench_get_slice.c │ │ │ ├── bench_stack_append.c │ │ │ └── bench_zfp_getitem.c │ │ ├── create_frame.c │ │ ├── delta_schunk.c │ │ ├── plot-speeds.py │ │ ├── plot-sum_openmp-results.py │ │ ├── rainfall-grid-150x150.bin │ │ ├── read-grid-150x150.py │ │ ├── results-corex │ │ │ ├── blosclz-cl1-sum_openmp-corex.out │ │ │ ├── blosclz-suite-corex.out │ │ │ ├── lz4-cl1-sum_openmp-corex.out │ │ │ ├── lz4-suite-corex.out │ │ │ ├── lz4hc-cl1-sum_openmp-corex.out │ │ │ ├── zlib-cl1-sum_openmp-corex.out │ │ │ └── zstd-cl1-sum_openmp-corex.out │ │ ├── sframe_bench.c │ │ ├── sum_openmp.c │ │ ├── trunc_prec_schunk.c │ │ └── zero_runlen.c │ ├── blosc │ │ ├── CMakeLists.txt │ │ ├── b2nd-private.h │ │ ├── b2nd.c │ │ ├── b2nd_utils.c │ │ ├── bitshuffle-altivec.c │ │ ├── bitshuffle-altivec.h │ │ ├── bitshuffle-avx2.c │ │ ├── bitshuffle-avx2.h │ │ ├── bitshuffle-avx512.c │ │ ├── bitshuffle-avx512.h │ │ ├── bitshuffle-generic.c │ │ ├── bitshuffle-generic.h │ │ ├── bitshuffle-neon.c │ │ ├── bitshuffle-neon.h │ │ ├── bitshuffle-sse2.c │ │ ├── bitshuffle-sse2.h │ │ ├── blosc-private.h │ │ ├── blosc2-stdio.c │ │ ├── blosc2.c │ │ ├── blosclz.c │ │ ├── blosclz.h │ │ ├── config.h.in │ │ ├── context.h │ │ ├── delta.c │ │ ├── delta.h │ │ ├── directories.c │ │ ├── fastcopy.c │ │ ├── fastcopy.h │ │ ├── frame.c │ │ ├── frame.h │ │ ├── schunk-private.h │ │ ├── schunk.c │ │ ├── sframe.c │ │ ├── sframe.h │ │ ├── shuffle-altivec.c │ │ ├── shuffle-altivec.h │ │ ├── shuffle-avx2.c │ │ ├── shuffle-avx2.h │ │ ├── shuffle-generic.c │ │ ├── shuffle-generic.h │ │ ├── shuffle-neon.c │ │ ├── shuffle-neon.h │ │ ├── shuffle-sse2.c │ │ ├── shuffle-sse2.h │ │ ├── shuffle.c │ │ ├── shuffle.h │ │ ├── stune.c │ │ ├── stune.h │ │ ├── timestamp.c │ │ ├── transpose-altivec.h │ │ ├── trunc-prec.c │ │ ├── trunc-prec.h │ │ └── win32 │ │ │ ├── pthread.c │ │ │ └── pthread.h │ ├── blosc2.pc.in │ ├── cmake │ │ ├── FindIPP.cmake │ │ ├── FindLZ4.cmake │ │ ├── FindSIMD.cmake │ │ ├── FindZLIB_NG.cmake │ │ ├── FindZSTD.cmake │ │ ├── toolchain-aarch64.cmake │ │ ├── toolchain-armhf.cmake │ │ └── toolchain-armsf.cmake │ ├── cmake_uninstall.cmake.in │ ├── code_of_conduct.md │ ├── compat │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── blosc-1.11.1-blosclz.cdata │ │ ├── blosc-1.11.1-lz4.cdata │ │ ├── blosc-1.11.1-lz4hc.cdata │ │ ├── blosc-1.11.1-zlib.cdata │ │ ├── blosc-1.11.1-zstd.cdata │ │ ├── blosc-1.14.0-blosclz.cdata │ │ ├── blosc-1.14.0-lz4.cdata │ │ ├── blosc-1.14.0-lz4hc.cdata │ │ ├── blosc-1.14.0-zlib.cdata │ │ ├── blosc-1.14.0-zstd.cdata │ │ ├── blosc-1.17.1-lz4-bitshuffle4-memcpy.cdata │ │ ├── blosc-1.17.1-lz4-bitshuffle8-nomemcpy.cdata │ │ ├── blosc-1.18.0-lz4-bitshuffle4-memcpy.cdata │ │ ├── blosc-1.18.0-lz4-bitshuffle8-nomemcpy.cdata │ │ ├── blosc-1.3.0-blosclz.cdata │ │ ├── blosc-1.3.0-lz4.cdata │ │ ├── blosc-1.3.0-lz4hc.cdata │ │ ├── blosc-1.3.0-zlib.cdata │ │ ├── blosc-1.7.0-blosclz.cdata │ │ ├── blosc-1.7.0-lz4.cdata │ │ ├── blosc-1.7.0-lz4hc.cdata │ │ ├── blosc-1.7.0-zlib.cdata │ │ ├── blosc-2.0.0-lz4-bitshuffle4-memcpy.cdata │ │ ├── blosc-2.0.0-lz4-bitshuffle8-nomemcpy.cdata │ │ └── filegen.c │ ├── doc │ │ ├── Doxyfile │ │ ├── _static │ │ │ ├── blosc-logo_256.png │ │ │ └── css │ │ │ │ └── custom.css │ │ ├── c-blosc2.rst │ │ ├── conf.py │ │ ├── development │ │ │ ├── contributing.rst │ │ │ ├── index.rst │ │ │ ├── releasing.rst │ │ │ └── roadmap.rst │ │ ├── environment.yml │ │ ├── format │ │ │ ├── cframe_format.rst │ │ │ ├── chunk_format.rst │ │ │ ├── index.rst │ │ │ └── sframe_format.rst │ │ ├── index.rst │ │ ├── reference │ │ │ ├── b2nd.rst │ │ │ ├── blosc1.rst │ │ │ ├── context.rst │ │ │ ├── index.rst │ │ │ ├── metalayers.rst │ │ │ ├── plugins.rst │ │ │ ├── schunk.rst │ │ │ ├── utility_functions.rst │ │ │ └── utility_variables.rst │ │ └── requirements.txt │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── b2nd │ │ │ ├── CMakeLists.txt │ │ │ ├── example_empty_shape.c │ │ │ ├── example_frame_generator.c │ │ │ ├── example_oindex.c │ │ │ ├── example_plainbuffer.c │ │ │ ├── example_plugins_codecs.c │ │ │ ├── example_plugins_filters.c │ │ │ ├── example_print_meta.c │ │ │ ├── example_serialize.c │ │ │ └── example_stack_images.c │ │ ├── compress_file.c │ │ ├── contexts.c │ │ ├── decompress_file.c │ │ ├── delta_schunk_ex.c │ │ ├── find_roots.c │ │ ├── frame_backed_schunk.c │ │ ├── frame_big.c │ │ ├── frame_metalayers.c │ │ ├── frame_offset.c │ │ ├── frame_roundtrip.c │ │ ├── frame_simple.c │ │ ├── frame_vlmetalayers.c │ │ ├── get_blocksize.c │ │ ├── get_set_slice.c │ │ ├── instrument_codec.c │ │ ├── many_compressors.c │ │ ├── multithread.c │ │ ├── noinit.c │ │ ├── schunk_postfilter.c │ │ ├── schunk_simple.c │ │ ├── sframe_simple.c │ │ ├── simple.c │ │ ├── urcodecs.c │ │ ├── urfilters.c │ │ ├── win-dynamic-linking.c │ │ └── zstd_dict.c │ ├── guix.scm │ ├── images │ │ ├── Complete-Write-Read-B2ND.png │ │ ├── Read-Partial-Slices-B2ND.png │ │ ├── b2nd-2level-parts.png │ │ ├── blosc2-pipeline.png │ │ └── blosc2-pipeline.svg │ ├── include │ │ ├── b2nd.h │ │ ├── blosc2.h │ │ └── blosc2 │ │ │ ├── blosc2-common.h │ │ │ ├── blosc2-export.h │ │ │ ├── blosc2-stdio.h │ │ │ ├── codecs-registry.h │ │ │ ├── filters-registry.h │ │ │ └── tuners-registry.h │ ├── internal-complibs │ │ ├── lz4-1.10.0 │ │ │ ├── lz4.c │ │ │ ├── lz4.h │ │ │ ├── lz4hc.c │ │ │ └── lz4hc.h │ │ ├── zlib-ng-2.0.7 │ │ │ ├── .shellcheckrc │ │ │ ├── CMakeLists.txt │ │ │ ├── FAQ.zlib │ │ │ ├── INDEX.md │ │ │ ├── LICENSE.md │ │ │ ├── Makefile.in │ │ │ ├── PORTING.md │ │ │ ├── README.md │ │ │ ├── adler32.c │ │ │ ├── adler32_p.h │ │ │ ├── arch │ │ │ │ ├── .gitignore │ │ │ │ ├── arm │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── adler32_neon.c │ │ │ │ │ ├── arm.h │ │ │ │ │ ├── armfeature.c │ │ │ │ │ ├── chunkset_neon.c │ │ │ │ │ ├── crc32_acle.c │ │ │ │ │ ├── ctzl.h │ │ │ │ │ ├── insert_string_acle.c │ │ │ │ │ └── slide_neon.c │ │ │ │ ├── generic │ │ │ │ │ └── Makefile.in │ │ │ │ ├── power │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── adler32_power8.c │ │ │ │ │ ├── power.c │ │ │ │ │ ├── power.h │ │ │ │ │ └── slide_hash_power8.c │ │ │ │ ├── s390 │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dfltcc_common.c │ │ │ │ │ ├── dfltcc_common.h │ │ │ │ │ ├── dfltcc_deflate.c │ │ │ │ │ ├── dfltcc_deflate.h │ │ │ │ │ ├── dfltcc_detail.h │ │ │ │ │ ├── dfltcc_inflate.c │ │ │ │ │ ├── dfltcc_inflate.h │ │ │ │ │ └── self-hosted-builder │ │ │ │ │ │ ├── actions-runner.Dockerfile │ │ │ │ │ │ ├── actions-runner.service │ │ │ │ │ │ ├── fs │ │ │ │ │ │ └── usr │ │ │ │ │ │ │ └── bin │ │ │ │ │ │ │ ├── actions-runner │ │ │ │ │ │ │ └── entrypoint │ │ │ │ │ │ └── qemu-user-static.service │ │ │ │ └── x86 │ │ │ │ │ ├── INDEX.md │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── adler32_avx.c │ │ │ │ │ ├── adler32_ssse3.c │ │ │ │ │ ├── chunkset_avx.c │ │ │ │ │ ├── chunkset_sse.c │ │ │ │ │ ├── compare258_avx.c │ │ │ │ │ ├── compare258_sse.c │ │ │ │ │ ├── crc_folding.c │ │ │ │ │ ├── crc_folding.h │ │ │ │ │ ├── insert_string_sse.c │ │ │ │ │ ├── slide_avx.c │ │ │ │ │ ├── slide_sse.c │ │ │ │ │ ├── x86.c │ │ │ │ │ └── x86.h │ │ │ ├── chunkset.c │ │ │ ├── chunkset_tpl.h │ │ │ ├── cmake │ │ │ │ ├── detect-arch.c │ │ │ │ ├── detect-arch.cmake │ │ │ │ ├── detect-coverage.cmake │ │ │ │ ├── detect-install-dirs.cmake │ │ │ │ ├── detect-sanitizer.cmake │ │ │ │ ├── run-and-compare.cmake │ │ │ │ ├── run-and-redirect.cmake │ │ │ │ ├── test-compress.cmake │ │ │ │ ├── test-tools.cmake │ │ │ │ ├── toolchain-aarch64.cmake │ │ │ │ ├── toolchain-arm.cmake │ │ │ │ ├── toolchain-armhf.cmake │ │ │ │ ├── toolchain-mingw-i686.cmake │ │ │ │ ├── toolchain-mingw-x86_64.cmake │ │ │ │ ├── toolchain-powerpc.cmake │ │ │ │ ├── toolchain-powerpc64.cmake │ │ │ │ ├── toolchain-powerpc64le.cmake │ │ │ │ ├── toolchain-s390x.cmake │ │ │ │ └── toolchain-sparc64.cmake │ │ │ ├── compare258.c │ │ │ ├── compress.c │ │ │ ├── configure │ │ │ ├── crc32.c │ │ │ ├── crc32_comb.c │ │ │ ├── crc32_comb_tbl._h │ │ │ ├── crc32_comb_tbl.h │ │ │ ├── crc32_p.h │ │ │ ├── crc32_tbl._h │ │ │ ├── crc32_tbl.h │ │ │ ├── deflate.c │ │ │ ├── deflate.h │ │ │ ├── deflate_fast.c │ │ │ ├── deflate_medium.c │ │ │ ├── deflate_p.h │ │ │ ├── deflate_quick.c │ │ │ ├── deflate_slow.c │ │ │ ├── doc │ │ │ │ ├── algorithm.txt │ │ │ │ ├── rfc1950.txt │ │ │ │ ├── rfc1951.txt │ │ │ │ ├── rfc1952.txt │ │ │ │ └── txtvsbin.txt │ │ │ ├── fallback_builtins.h │ │ │ ├── functable.c │ │ │ ├── functable.h │ │ │ ├── gzguts.h │ │ │ ├── gzlib.c │ │ │ ├── gzread.c │ │ │ ├── gzwrite.c │ │ │ ├── infback.c │ │ │ ├── inffast.c │ │ │ ├── inffast.h │ │ │ ├── inffixed_tbl._h │ │ │ ├── inffixed_tbl.h │ │ │ ├── inflate.c │ │ │ ├── inflate.h │ │ │ ├── inflate_p.h │ │ │ ├── inftrees.c │ │ │ ├── inftrees.h │ │ │ ├── insert_string.c │ │ │ ├── insert_string_tpl.h │ │ │ ├── match_tpl.h │ │ │ ├── test │ │ │ │ ├── .gitignore │ │ │ │ ├── CVE-2002-0059 │ │ │ │ │ └── test.gz │ │ │ │ ├── CVE-2003-0107.c │ │ │ │ ├── CVE-2004-0797 │ │ │ │ │ └── test.gz │ │ │ │ ├── CVE-2005-1849 │ │ │ │ │ └── test.gz │ │ │ │ ├── CVE-2005-2096 │ │ │ │ │ └── test.gz │ │ │ │ ├── CVE-2018-25032 │ │ │ │ │ ├── default.txt │ │ │ │ │ └── fixed.txt │ │ │ │ ├── GH-361 │ │ │ │ │ └── test.txt │ │ │ │ ├── GH-364 │ │ │ │ │ └── test.bin │ │ │ │ ├── GH-382 │ │ │ │ │ └── defneg3.dat │ │ │ │ ├── GH-751 │ │ │ │ │ └── test.txt │ │ │ │ ├── GH-979 │ │ │ │ │ └── pigz-2.6.tar.gz │ │ │ │ ├── Makefile.in │ │ │ │ ├── README.md │ │ │ │ ├── abi │ │ │ │ │ ├── ignore │ │ │ │ │ ├── zlib-v1.2.11-arm-linux-gnueabihf.abi │ │ │ │ │ └── zlib-v1.2.11-x86_64-linux-gnu.abi │ │ │ │ ├── abicheck.md │ │ │ │ ├── abicheck.sh │ │ │ │ ├── adler32_test.c │ │ │ │ ├── crc32_test.c │ │ │ │ ├── data │ │ │ │ │ ├── fireworks.jpg │ │ │ │ │ ├── lcet10.txt │ │ │ │ │ └── paper-100k.pdf │ │ │ │ ├── deflate_quick_bi_valid.c │ │ │ │ ├── deflate_quick_block_open.c │ │ │ │ ├── example.c │ │ │ │ ├── fuzz │ │ │ │ │ ├── checksum_fuzzer.c │ │ │ │ │ ├── compress_fuzzer.c │ │ │ │ │ ├── example_dict_fuzzer.c │ │ │ │ │ ├── example_flush_fuzzer.c │ │ │ │ │ ├── example_large_fuzzer.c │ │ │ │ │ ├── example_small_fuzzer.c │ │ │ │ │ ├── minigzip_fuzzer.c │ │ │ │ │ └── standalone_fuzz_target_runner.c │ │ │ │ ├── gh1235.c │ │ │ │ ├── hash_head_0.c │ │ │ │ ├── infcover.c │ │ │ │ ├── inflate_adler32.c │ │ │ │ ├── minideflate.c │ │ │ │ ├── minigzip.c │ │ │ │ ├── pigz │ │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── pkgcheck.sh │ │ │ │ ├── switchlevels.c │ │ │ │ └── testCVEinputs.sh │ │ │ ├── tools │ │ │ │ ├── codecov-upload.sh │ │ │ │ ├── config.sub │ │ │ │ ├── makecrct.c │ │ │ │ ├── makefixed.c │ │ │ │ └── maketrees.c │ │ │ ├── trees.c │ │ │ ├── trees.h │ │ │ ├── trees_emit.h │ │ │ ├── trees_tbl._h │ │ │ ├── trees_tbl.h │ │ │ ├── uncompr.c │ │ │ ├── win32 │ │ │ │ ├── DLL_FAQ.txt │ │ │ │ ├── Makefile.a64 │ │ │ │ ├── Makefile.arm │ │ │ │ ├── Makefile.msc │ │ │ │ ├── README-WIN32.txt │ │ │ │ ├── zlib-ng.def │ │ │ │ ├── zlib-ng1.rc │ │ │ │ ├── zlib.def │ │ │ │ ├── zlib1.rc │ │ │ │ └── zlibcompat.def │ │ │ ├── zbuild.h │ │ │ ├── zconf-ng.h.in │ │ │ ├── zconf.h │ │ │ ├── zconf.h.in │ │ │ ├── zconf.h.included │ │ │ ├── zendian.h │ │ │ ├── zlib-ng.h │ │ │ ├── zlib-ng.map │ │ │ ├── zlib.h │ │ │ ├── zlib.map │ │ │ ├── zlib.pc.cmakein │ │ │ ├── zlib.pc.in │ │ │ ├── zutil.c │ │ │ ├── zutil.h │ │ │ └── zutil_p.h │ │ └── zstd-1.5.6 │ │ │ ├── .gitignore │ │ │ ├── BUCK │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── common │ │ │ ├── allocations.h │ │ │ ├── bits.h │ │ │ ├── bitstream.h │ │ │ ├── compiler.h │ │ │ ├── cpu.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── entropy_common.c │ │ │ ├── error_private.c │ │ │ ├── error_private.h │ │ │ ├── fse.h │ │ │ ├── fse_decompress.c │ │ │ ├── huf.h │ │ │ ├── mem.h │ │ │ ├── pool.c │ │ │ ├── pool.h │ │ │ ├── portability_macros.h │ │ │ ├── threading.c │ │ │ ├── threading.h │ │ │ ├── xxhash.c │ │ │ ├── xxhash.h │ │ │ ├── zstd_common.c │ │ │ ├── zstd_deps.h │ │ │ ├── zstd_internal.h │ │ │ └── zstd_trace.h │ │ │ ├── compress │ │ │ ├── clevels.h │ │ │ ├── fse_compress.c │ │ │ ├── hist.c │ │ │ ├── hist.h │ │ │ ├── huf_compress.c │ │ │ ├── zstd_compress.c │ │ │ ├── zstd_compress_internal.h │ │ │ ├── zstd_compress_literals.c │ │ │ ├── zstd_compress_literals.h │ │ │ ├── zstd_compress_sequences.c │ │ │ ├── zstd_compress_sequences.h │ │ │ ├── zstd_compress_superblock.c │ │ │ ├── zstd_compress_superblock.h │ │ │ ├── zstd_cwksp.h │ │ │ ├── zstd_double_fast.c │ │ │ ├── zstd_double_fast.h │ │ │ ├── zstd_fast.c │ │ │ ├── zstd_fast.h │ │ │ ├── zstd_lazy.c │ │ │ ├── zstd_lazy.h │ │ │ ├── zstd_ldm.c │ │ │ ├── zstd_ldm.h │ │ │ ├── zstd_ldm_geartab.h │ │ │ ├── zstd_opt.c │ │ │ ├── zstd_opt.h │ │ │ ├── zstdmt_compress.c │ │ │ └── zstdmt_compress.h │ │ │ ├── decompress │ │ │ ├── huf_decompress.c │ │ │ ├── huf_decompress_amd64.S │ │ │ ├── zstd_ddict.c │ │ │ ├── zstd_ddict.h │ │ │ ├── zstd_decompress.c │ │ │ ├── zstd_decompress_block.c │ │ │ ├── zstd_decompress_block.h │ │ │ └── zstd_decompress_internal.h │ │ │ ├── deprecated │ │ │ ├── zbuff.h │ │ │ ├── zbuff_common.c │ │ │ ├── zbuff_compress.c │ │ │ └── zbuff_decompress.c │ │ │ ├── dictBuilder │ │ │ ├── cover.c │ │ │ ├── cover.h │ │ │ ├── divsufsort.c │ │ │ ├── divsufsort.h │ │ │ ├── fastcover.c │ │ │ └── zdict.c │ │ │ ├── dll │ │ │ └── example │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── fullbench-dll.sln │ │ │ │ └── fullbench-dll.vcxproj │ │ │ ├── legacy │ │ │ ├── zstd_legacy.h │ │ │ ├── zstd_v01.c │ │ │ ├── zstd_v01.h │ │ │ ├── zstd_v02.c │ │ │ ├── zstd_v02.h │ │ │ ├── zstd_v03.c │ │ │ ├── zstd_v03.h │ │ │ ├── zstd_v04.c │ │ │ ├── zstd_v04.h │ │ │ ├── zstd_v05.c │ │ │ ├── zstd_v05.h │ │ │ ├── zstd_v06.c │ │ │ ├── zstd_v06.h │ │ │ ├── zstd_v07.c │ │ │ └── zstd_v07.h │ │ │ ├── libzstd.mk │ │ │ ├── libzstd.pc.in │ │ │ ├── module.modulemap │ │ │ ├── zdict.h │ │ │ ├── zstd.h │ │ │ └── zstd_errors.h │ ├── plugins │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── codecs │ │ │ ├── CMakeLists.txt │ │ │ ├── codecs-registry.c │ │ │ ├── ndlz │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── ndlz-private.h │ │ │ │ ├── ndlz.c │ │ │ │ ├── ndlz.h │ │ │ │ ├── ndlz4x4.c │ │ │ │ ├── ndlz4x4.h │ │ │ │ ├── ndlz8x8.c │ │ │ │ ├── ndlz8x8.h │ │ │ │ ├── test_ndlz.c │ │ │ │ ├── xxhash.c │ │ │ │ └── xxhash.h │ │ │ └── zfp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── blosc2-zfp.c │ │ │ │ ├── blosc2-zfp.h │ │ │ │ ├── include │ │ │ │ ├── bitstream.h │ │ │ │ ├── zfp.h │ │ │ │ └── zfp │ │ │ │ │ ├── macros.h │ │ │ │ │ ├── system.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── version.h │ │ │ │ ├── src │ │ │ │ ├── bitstream.c │ │ │ │ ├── block1.h │ │ │ │ ├── block2.h │ │ │ │ ├── block3.h │ │ │ │ ├── block4.h │ │ │ │ ├── decode1d.c │ │ │ │ ├── decode1f.c │ │ │ │ ├── decode1i.c │ │ │ │ ├── decode1l.c │ │ │ │ ├── decode2d.c │ │ │ │ ├── decode2f.c │ │ │ │ ├── decode2i.c │ │ │ │ ├── decode2l.c │ │ │ │ ├── decode3d.c │ │ │ │ ├── decode3f.c │ │ │ │ ├── decode3i.c │ │ │ │ ├── decode3l.c │ │ │ │ ├── decode4d.c │ │ │ │ ├── decode4f.c │ │ │ │ ├── decode4i.c │ │ │ │ ├── decode4l.c │ │ │ │ ├── encode1d.c │ │ │ │ ├── encode1f.c │ │ │ │ ├── encode1i.c │ │ │ │ ├── encode1l.c │ │ │ │ ├── encode2d.c │ │ │ │ ├── encode2f.c │ │ │ │ ├── encode2i.c │ │ │ │ ├── encode2l.c │ │ │ │ ├── encode3d.c │ │ │ │ ├── encode3f.c │ │ │ │ ├── encode3i.c │ │ │ │ ├── encode3l.c │ │ │ │ ├── encode4d.c │ │ │ │ ├── encode4f.c │ │ │ │ ├── encode4i.c │ │ │ │ ├── encode4l.c │ │ │ │ ├── inline │ │ │ │ │ ├── bitstream.c │ │ │ │ │ └── inline.h │ │ │ │ ├── share │ │ │ │ │ ├── omp.c │ │ │ │ │ └── parallel.c │ │ │ │ ├── template │ │ │ │ │ ├── codec.c │ │ │ │ │ ├── codec.h │ │ │ │ │ ├── codec1.c │ │ │ │ │ ├── codec2.c │ │ │ │ │ ├── codec3.c │ │ │ │ │ ├── codec4.c │ │ │ │ │ ├── codecf.c │ │ │ │ │ ├── compress.c │ │ │ │ │ ├── decode.c │ │ │ │ │ ├── decode1.c │ │ │ │ │ ├── decode2.c │ │ │ │ │ ├── decode3.c │ │ │ │ │ ├── decode4.c │ │ │ │ │ ├── decodef.c │ │ │ │ │ ├── decodei.c │ │ │ │ │ ├── decompress.c │ │ │ │ │ ├── encode.c │ │ │ │ │ ├── encode1.c │ │ │ │ │ ├── encode2.c │ │ │ │ │ ├── encode3.c │ │ │ │ │ ├── encode4.c │ │ │ │ │ ├── encodef.c │ │ │ │ │ ├── encodei.c │ │ │ │ │ ├── ompcompress.c │ │ │ │ │ ├── revcodecf.c │ │ │ │ │ ├── revdecode.c │ │ │ │ │ ├── revdecode1.c │ │ │ │ │ ├── revdecode2.c │ │ │ │ │ ├── revdecode3.c │ │ │ │ │ ├── revdecode4.c │ │ │ │ │ ├── revdecodef.c │ │ │ │ │ ├── revencode.c │ │ │ │ │ ├── revencode1.c │ │ │ │ │ ├── revencode2.c │ │ │ │ │ ├── revencode3.c │ │ │ │ │ ├── revencode4.c │ │ │ │ │ ├── revencodef.c │ │ │ │ │ └── template.h │ │ │ │ ├── traitsd.h │ │ │ │ ├── traitsf.h │ │ │ │ ├── traitsi.h │ │ │ │ ├── traitsl.h │ │ │ │ └── zfp.c │ │ │ │ ├── test_zfp_acc_float.c │ │ │ │ ├── test_zfp_prec_float.c │ │ │ │ ├── test_zfp_rate_float.c │ │ │ │ ├── test_zfp_rate_getitem.c │ │ │ │ └── zfp-private.h │ │ ├── filters │ │ │ ├── CMakeLists.txt │ │ │ ├── bytedelta │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── bytedelta.c │ │ │ │ ├── bytedelta.h │ │ │ │ └── test_bytedelta.c │ │ │ ├── filters-registry.c │ │ │ ├── int_trunc │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── int_trunc.c │ │ │ │ ├── int_trunc.h │ │ │ │ └── test_int_trunc.c │ │ │ ├── ndcell │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── ndcell.c │ │ │ │ ├── ndcell.h │ │ │ │ └── test_ndcell.c │ │ │ └── ndmean │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── ndmean.c │ │ │ │ ├── ndmean.h │ │ │ │ ├── test_ndmean_mean.c │ │ │ │ └── test_ndmean_repart.c │ │ ├── test_data │ │ │ ├── README.md │ │ │ ├── example_day_month_temp.b2nd │ │ │ └── example_item_prices.b2nd │ │ └── tuners │ │ │ ├── CMakeLists.txt │ │ │ └── tuners-registry.c │ └── tests │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── b2nd │ │ ├── CMakeLists.txt │ │ ├── cutest.h │ │ ├── test_b2nd_append.c │ │ ├── test_b2nd_copy.c │ │ ├── test_b2nd_copy_buffer.c │ │ ├── test_b2nd_delete.c │ │ ├── test_b2nd_full.c │ │ ├── test_b2nd_get_slice.c │ │ ├── test_b2nd_get_slice_buffer.c │ │ ├── test_b2nd_insert.c │ │ ├── test_b2nd_metalayers.c │ │ ├── test_b2nd_nans.c │ │ ├── test_b2nd_open_offset.c │ │ ├── test_b2nd_persistency.c │ │ ├── test_b2nd_resize.c │ │ ├── test_b2nd_roundtrip.c │ │ ├── test_b2nd_save.c │ │ ├── test_b2nd_serialize.c │ │ ├── test_b2nd_set_slice_buffer.c │ │ ├── test_b2nd_squeeze.c │ │ ├── test_b2nd_squeeze_index.c │ │ ├── test_b2nd_uninit.c │ │ ├── test_b2nd_zeros.c │ │ └── test_common.h │ │ ├── cutest.h │ │ ├── fuzz │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── corpus │ │ │ ├── README.md │ │ │ ├── frame_simple-blosclz.b2frame │ │ │ ├── frame_simple-lz4.b2frame │ │ │ ├── frame_simple-lz4hc.b2frame │ │ │ ├── frame_simple-zlib.b2frame │ │ │ └── frame_simple-zstd.b2frame │ │ ├── fuzz_compress_chunk.c │ │ ├── fuzz_compress_frame.c │ │ ├── fuzz_decompress_chunk.c │ │ ├── fuzz_decompress_frame.c │ │ ├── generate_inputs_corpus.c │ │ └── standalone.c │ │ ├── gcc-segfault-issue.c │ │ ├── print_versions.c │ │ ├── test_all.sh │ │ ├── test_api.c │ │ ├── test_bitshuffle_leftovers.c │ │ ├── test_blosc1_compat.c │ │ ├── test_change_nthreads_append.c │ │ ├── test_common.h │ │ ├── test_compress_roundtrip.c │ │ ├── test_compress_roundtrip.csv │ │ ├── test_compressor.c │ │ ├── test_contexts.c │ │ ├── test_copy.c │ │ ├── test_delete_chunk.c │ │ ├── test_delta.c │ │ ├── test_delta_schunk.c │ │ ├── test_dict_schunk.c │ │ ├── test_empty_buffer.c │ │ ├── test_fill_special.c │ │ ├── test_filters.c │ │ ├── test_frame.c │ │ ├── test_frame_get_offsets.c │ │ ├── test_frame_offset.c │ │ ├── test_get_slice_buffer.c │ │ ├── test_get_slice_nchunks.c │ │ ├── test_getitem.c │ │ ├── test_getitem.csv │ │ ├── test_getitem_delta.c │ │ ├── test_insert_chunk.c │ │ ├── test_lazychunk.c │ │ ├── test_lazychunk_memcpyed.c │ │ ├── test_maskout.c │ │ ├── test_maxout.c │ │ ├── test_mmap.c │ │ ├── test_noinit.c │ │ ├── test_nolock.c │ │ ├── test_nthreads.c │ │ ├── test_postfilter.c │ │ ├── test_prefilter.c │ │ ├── test_reorder_offsets.c │ │ ├── test_schunk.c │ │ ├── test_schunk_frame.c │ │ ├── test_schunk_header.c │ │ ├── test_set_slice_buffer.c │ │ ├── test_sframe.c │ │ ├── test_sframe_lazychunk.c │ │ ├── test_shuffle_roundtrip_altivec.c │ │ ├── test_shuffle_roundtrip_altivec.csv │ │ ├── test_shuffle_roundtrip_avx2.c │ │ ├── test_shuffle_roundtrip_avx2.csv │ │ ├── test_shuffle_roundtrip_generic.c │ │ ├── test_shuffle_roundtrip_generic.csv │ │ ├── test_shuffle_roundtrip_neon.c │ │ ├── test_shuffle_roundtrip_neon.csv │ │ ├── test_shuffle_roundtrip_sse2.c │ │ ├── test_shuffle_roundtrip_sse2.csv │ │ ├── test_small_chunks.c │ │ ├── test_udio.c │ │ ├── test_update_chunk.c │ │ ├── test_urcodecs.c │ │ ├── test_urfilters.c │ │ └── test_zero_runlen.c ├── json-3.11.2 │ ├── .clang-format │ ├── .clang-tidy │ ├── .github │ │ ├── CODEOWNERS │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── FUNDING.yml │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug.yaml │ │ │ └── config.yml │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ ├── SECURITY.md │ │ ├── config.yml │ │ ├── external_ci │ │ │ ├── .drone.yml │ │ │ └── appveyor.yml │ │ ├── labeler.yml │ │ ├── stale.yml │ │ └── workflows │ │ │ ├── codeql-analysis.yml │ │ │ ├── labeler.yml │ │ │ ├── macos.yml │ │ │ ├── publish_documentation.yml │ │ │ ├── ubuntu.yml │ │ │ └── windows.yml │ ├── .gitignore │ ├── .lgtm.yml │ ├── .reuse │ │ ├── README.md │ │ ├── dep5 │ │ └── templates │ │ │ ├── json.jinja2 │ │ │ └── json_support.jinja2 │ ├── CITATION.cff │ ├── CMakeLists.txt │ ├── ChangeLog.md │ ├── LICENSE.MIT │ ├── LICENSES │ │ ├── Apache-2.0.txt │ │ ├── BSD-3-Clause.txt │ │ ├── GPL-3.0-only.txt │ │ └── MIT.txt │ ├── Makefile │ ├── README.md │ ├── cmake │ │ ├── ci.cmake │ │ ├── config.cmake.in │ │ ├── download_test_data.cmake │ │ ├── nlohmann_jsonConfigVersion.cmake.in │ │ ├── pkg-config.pc.in │ │ └── test.cmake │ ├── docs │ │ ├── Makefile │ │ ├── README.md │ │ ├── avatars.png │ │ ├── docset │ │ │ ├── Info.plist │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── docSet.sql │ │ │ ├── docset.json │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ │ ├── examples │ │ │ ├── README.cpp │ │ │ ├── README.output │ │ │ ├── accept__string.cpp │ │ │ ├── accept__string.output │ │ │ ├── array.cpp │ │ │ ├── array.output │ │ │ ├── array_t.cpp │ │ │ ├── array_t.output │ │ │ ├── at__json_pointer.cpp │ │ │ ├── at__json_pointer.output │ │ │ ├── at__json_pointer_const.cpp │ │ │ ├── at__json_pointer_const.output │ │ │ ├── at__keytype.c++17.cpp │ │ │ ├── at__keytype.c++17.output │ │ │ ├── at__keytype_const.c++17.cpp │ │ │ ├── at__keytype_const.c++17.output │ │ │ ├── at__object_t_key_type.cpp │ │ │ ├── at__object_t_key_type.output │ │ │ ├── at__object_t_key_type_const.cpp │ │ │ ├── at__object_t_key_type_const.output │ │ │ ├── at__size_type.cpp │ │ │ ├── at__size_type.output │ │ │ ├── at__size_type_const.cpp │ │ │ ├── at__size_type_const.output │ │ │ ├── back.cpp │ │ │ ├── back.output │ │ │ ├── basic_json__CompatibleType.cpp │ │ │ ├── basic_json__CompatibleType.output │ │ │ ├── basic_json__InputIt_InputIt.cpp │ │ │ ├── basic_json__InputIt_InputIt.output │ │ │ ├── basic_json__basic_json.cpp │ │ │ ├── basic_json__basic_json.output │ │ │ ├── basic_json__copyassignment.cpp │ │ │ ├── basic_json__copyassignment.output │ │ │ ├── basic_json__list_init_t.cpp │ │ │ ├── basic_json__list_init_t.output │ │ │ ├── basic_json__moveconstructor.cpp │ │ │ ├── basic_json__moveconstructor.output │ │ │ ├── basic_json__nullptr_t.cpp │ │ │ ├── basic_json__nullptr_t.output │ │ │ ├── basic_json__size_type_basic_json.cpp │ │ │ ├── basic_json__size_type_basic_json.output │ │ │ ├── basic_json__value_t.cpp │ │ │ ├── basic_json__value_t.output │ │ │ ├── begin.cpp │ │ │ ├── begin.output │ │ │ ├── binary.cpp │ │ │ ├── binary.output │ │ │ ├── binary_t.cpp │ │ │ ├── binary_t.output │ │ │ ├── boolean_t.cpp │ │ │ ├── boolean_t.output │ │ │ ├── byte_container_with_subtype__byte_container_with_subtype.cpp │ │ │ ├── byte_container_with_subtype__byte_container_with_subtype.output │ │ │ ├── byte_container_with_subtype__clear_subtype.cpp │ │ │ ├── byte_container_with_subtype__clear_subtype.output │ │ │ ├── byte_container_with_subtype__has_subtype.cpp │ │ │ ├── byte_container_with_subtype__has_subtype.output │ │ │ ├── byte_container_with_subtype__set_subtype.cpp │ │ │ ├── byte_container_with_subtype__set_subtype.output │ │ │ ├── byte_container_with_subtype__subtype.cpp │ │ │ ├── byte_container_with_subtype__subtype.output │ │ │ ├── cbegin.cpp │ │ │ ├── cbegin.output │ │ │ ├── cbor_tag_handler_t.cpp │ │ │ ├── cbor_tag_handler_t.output │ │ │ ├── cend.cpp │ │ │ ├── cend.output │ │ │ ├── clear.cpp │ │ │ ├── clear.output │ │ │ ├── contains__json_pointer.cpp │ │ │ ├── contains__json_pointer.output │ │ │ ├── contains__keytype.c++17.cpp │ │ │ ├── contains__keytype.c++17.output │ │ │ ├── contains__object_t_key_type.cpp │ │ │ ├── contains__object_t_key_type.output │ │ │ ├── count__keytype.c++17.cpp │ │ │ ├── count__keytype.c++17.output │ │ │ ├── count__object_t_key_type.cpp │ │ │ ├── count__object_t_key_type.output │ │ │ ├── crbegin.cpp │ │ │ ├── crbegin.output │ │ │ ├── crend.cpp │ │ │ ├── crend.output │ │ │ ├── default_object_comparator_t.cpp │ │ │ ├── default_object_comparator_t.output │ │ │ ├── diagnostics_extended.cpp │ │ │ ├── diagnostics_extended.output │ │ │ ├── diagnostics_standard.cpp │ │ │ ├── diagnostics_standard.output │ │ │ ├── diff.cpp │ │ │ ├── diff.output │ │ │ ├── dump.cpp │ │ │ ├── dump.output │ │ │ ├── emplace.cpp │ │ │ ├── emplace.output │ │ │ ├── emplace_back.cpp │ │ │ ├── emplace_back.output │ │ │ ├── empty.cpp │ │ │ ├── empty.output │ │ │ ├── end.cpp │ │ │ ├── end.output │ │ │ ├── erase__IteratorType.cpp │ │ │ ├── erase__IteratorType.output │ │ │ ├── erase__IteratorType_IteratorType.cpp │ │ │ ├── erase__IteratorType_IteratorType.output │ │ │ ├── erase__keytype.c++17.cpp │ │ │ ├── erase__keytype.c++17.output │ │ │ ├── erase__object_t_key_type.cpp │ │ │ ├── erase__object_t_key_type.output │ │ │ ├── erase__size_type.cpp │ │ │ ├── erase__size_type.output │ │ │ ├── error_handler_t.cpp │ │ │ ├── error_handler_t.output │ │ │ ├── exception.cpp │ │ │ ├── exception.output │ │ │ ├── find__keytype.c++17.cpp │ │ │ ├── find__keytype.c++17.output │ │ │ ├── find__object_t_key_type.cpp │ │ │ ├── find__object_t_key_type.output │ │ │ ├── flatten.cpp │ │ │ ├── flatten.output │ │ │ ├── from_bjdata.cpp │ │ │ ├── from_bjdata.output │ │ │ ├── from_bson.cpp │ │ │ ├── from_bson.output │ │ │ ├── from_cbor.cpp │ │ │ ├── from_cbor.output │ │ │ ├── from_json__default_constructible.cpp │ │ │ ├── from_json__default_constructible.output │ │ │ ├── from_json__non_default_constructible.cpp │ │ │ ├── from_json__non_default_constructible.output │ │ │ ├── from_msgpack.cpp │ │ │ ├── from_msgpack.output │ │ │ ├── from_ubjson.cpp │ │ │ ├── from_ubjson.output │ │ │ ├── front.cpp │ │ │ ├── front.output │ │ │ ├── get__PointerType.cpp │ │ │ ├── get__PointerType.output │ │ │ ├── get__ValueType_const.cpp │ │ │ ├── get__ValueType_const.output │ │ │ ├── get_allocator.cpp │ │ │ ├── get_allocator.output │ │ │ ├── get_binary.cpp │ │ │ ├── get_binary.output │ │ │ ├── get_ptr.cpp │ │ │ ├── get_ptr.output │ │ │ ├── get_ref.cpp │ │ │ ├── get_ref.output │ │ │ ├── get_to.cpp │ │ │ ├── get_to.output │ │ │ ├── insert.cpp │ │ │ ├── insert.output │ │ │ ├── insert__count.cpp │ │ │ ├── insert__count.output │ │ │ ├── insert__ilist.cpp │ │ │ ├── insert__ilist.output │ │ │ ├── insert__range.cpp │ │ │ ├── insert__range.output │ │ │ ├── insert__range_object.cpp │ │ │ ├── insert__range_object.output │ │ │ ├── invalid_iterator.cpp │ │ │ ├── invalid_iterator.output │ │ │ ├── is_array.cpp │ │ │ ├── is_array.output │ │ │ ├── is_binary.cpp │ │ │ ├── is_binary.output │ │ │ ├── is_boolean.cpp │ │ │ ├── is_boolean.output │ │ │ ├── is_discarded.cpp │ │ │ ├── is_discarded.output │ │ │ ├── is_null.cpp │ │ │ ├── is_null.output │ │ │ ├── is_number.cpp │ │ │ ├── is_number.output │ │ │ ├── is_number_float.cpp │ │ │ ├── is_number_float.output │ │ │ ├── is_number_integer.cpp │ │ │ ├── is_number_integer.output │ │ │ ├── is_number_unsigned.cpp │ │ │ ├── is_number_unsigned.output │ │ │ ├── is_object.cpp │ │ │ ├── is_object.output │ │ │ ├── is_primitive.cpp │ │ │ ├── is_primitive.output │ │ │ ├── is_string.cpp │ │ │ ├── is_string.output │ │ │ ├── is_structured.cpp │ │ │ ├── is_structured.output │ │ │ ├── items.cpp │ │ │ ├── items.output │ │ │ ├── json_lines.cpp │ │ │ ├── json_lines.output │ │ │ ├── json_pointer.cpp │ │ │ ├── json_pointer.output │ │ │ ├── json_pointer__back.cpp │ │ │ ├── json_pointer__back.output │ │ │ ├── json_pointer__empty.cpp │ │ │ ├── json_pointer__empty.output │ │ │ ├── json_pointer__operator__equal.cpp │ │ │ ├── json_pointer__operator__equal.output │ │ │ ├── json_pointer__operator__equal_stringtype.cpp │ │ │ ├── json_pointer__operator__equal_stringtype.output │ │ │ ├── json_pointer__operator__notequal.cpp │ │ │ ├── json_pointer__operator__notequal.output │ │ │ ├── json_pointer__operator__notequal_stringtype.cpp │ │ │ ├── json_pointer__operator__notequal_stringtype.output │ │ │ ├── json_pointer__operator_add.cpp │ │ │ ├── json_pointer__operator_add.output │ │ │ ├── json_pointer__operator_add_binary.cpp │ │ │ ├── json_pointer__operator_add_binary.output │ │ │ ├── json_pointer__operator_string_t.cpp │ │ │ ├── json_pointer__operator_string_t.output │ │ │ ├── json_pointer__parent_pointer.cpp │ │ │ ├── json_pointer__parent_pointer.output │ │ │ ├── json_pointer__pop_back.cpp │ │ │ ├── json_pointer__pop_back.output │ │ │ ├── json_pointer__push_back.cpp │ │ │ ├── json_pointer__push_back.output │ │ │ ├── json_pointer__string_t.cpp │ │ │ ├── json_pointer__string_t.output │ │ │ ├── json_pointer__to_string.cpp │ │ │ ├── json_pointer__to_string.output │ │ │ ├── max_size.cpp │ │ │ ├── max_size.output │ │ │ ├── merge_patch.cpp │ │ │ ├── merge_patch.output │ │ │ ├── meta.cpp │ │ │ ├── meta.output │ │ │ ├── nlohmann_define_type_intrusive_explicit.cpp │ │ │ ├── nlohmann_define_type_intrusive_explicit.output │ │ │ ├── nlohmann_define_type_intrusive_macro.cpp │ │ │ ├── nlohmann_define_type_intrusive_macro.output │ │ │ ├── nlohmann_define_type_intrusive_with_default_explicit.cpp │ │ │ ├── nlohmann_define_type_intrusive_with_default_explicit.output │ │ │ ├── nlohmann_define_type_intrusive_with_default_macro.cpp │ │ │ ├── nlohmann_define_type_intrusive_with_default_macro.output │ │ │ ├── nlohmann_define_type_non_intrusive_explicit.cpp │ │ │ ├── nlohmann_define_type_non_intrusive_explicit.output │ │ │ ├── nlohmann_define_type_non_intrusive_macro.cpp │ │ │ ├── nlohmann_define_type_non_intrusive_macro.output │ │ │ ├── nlohmann_define_type_non_intrusive_with_default_explicit.cpp │ │ │ ├── nlohmann_define_type_non_intrusive_with_default_explicit.output │ │ │ ├── nlohmann_define_type_non_intrusive_with_default_macro.cpp │ │ │ ├── nlohmann_define_type_non_intrusive_with_default_macro.output │ │ │ ├── nlohmann_json_namespace.cpp │ │ │ ├── nlohmann_json_namespace.output │ │ │ ├── nlohmann_json_namespace_begin.c++17.cpp │ │ │ ├── nlohmann_json_namespace_begin.c++17.output │ │ │ ├── nlohmann_json_namespace_no_version.cpp │ │ │ ├── nlohmann_json_namespace_no_version.output │ │ │ ├── nlohmann_json_serialize_enum.cpp │ │ │ ├── nlohmann_json_serialize_enum.output │ │ │ ├── nlohmann_json_serialize_enum_2.cpp │ │ │ ├── nlohmann_json_serialize_enum_2.output │ │ │ ├── nlohmann_json_version.cpp │ │ │ ├── nlohmann_json_version.output │ │ │ ├── number_float_t.cpp │ │ │ ├── number_float_t.output │ │ │ ├── number_integer_t.cpp │ │ │ ├── number_integer_t.output │ │ │ ├── number_unsigned_t.cpp │ │ │ ├── number_unsigned_t.output │ │ │ ├── object.cpp │ │ │ ├── object.output │ │ │ ├── object_comparator_t.cpp │ │ │ ├── object_comparator_t.output │ │ │ ├── object_t.cpp │ │ │ ├── object_t.output │ │ │ ├── operator__ValueType.cpp │ │ │ ├── operator__ValueType.output │ │ │ ├── operator__equal.cpp │ │ │ ├── operator__equal.output │ │ │ ├── operator__equal__nullptr_t.cpp │ │ │ ├── operator__equal__nullptr_t.output │ │ │ ├── operator__equal__specializations.cpp │ │ │ ├── operator__equal__specializations.output │ │ │ ├── operator__greater.cpp │ │ │ ├── operator__greater.output │ │ │ ├── operator__greaterequal.cpp │ │ │ ├── operator__greaterequal.output │ │ │ ├── operator__less.cpp │ │ │ ├── operator__less.output │ │ │ ├── operator__lessequal.cpp │ │ │ ├── operator__lessequal.output │ │ │ ├── operator__notequal.cpp │ │ │ ├── operator__notequal.output │ │ │ ├── operator__notequal__nullptr_t.cpp │ │ │ ├── operator__notequal__nullptr_t.output │ │ │ ├── operator__value_t.cpp │ │ │ ├── operator__value_t.output │ │ │ ├── operator_array__json_pointer.cpp │ │ │ ├── operator_array__json_pointer.output │ │ │ ├── operator_array__json_pointer_const.cpp │ │ │ ├── operator_array__json_pointer_const.output │ │ │ ├── operator_array__keytype.c++17.cpp │ │ │ ├── operator_array__keytype.c++17.output │ │ │ ├── operator_array__keytype_const.c++17.cpp │ │ │ ├── operator_array__keytype_const.c++17.output │ │ │ ├── operator_array__object_t_key_type.cpp │ │ │ ├── operator_array__object_t_key_type.output │ │ │ ├── operator_array__object_t_key_type_const.cpp │ │ │ ├── operator_array__object_t_key_type_const.output │ │ │ ├── operator_array__size_type.cpp │ │ │ ├── operator_array__size_type.output │ │ │ ├── operator_array__size_type_const.cpp │ │ │ ├── operator_array__size_type_const.output │ │ │ ├── operator_deserialize.cpp │ │ │ ├── operator_deserialize.output │ │ │ ├── operator_literal_json.cpp │ │ │ ├── operator_literal_json.output │ │ │ ├── operator_literal_json_pointer.cpp │ │ │ ├── operator_literal_json_pointer.output │ │ │ ├── operator_ltlt__basic_json.cpp │ │ │ ├── operator_ltlt__basic_json.output │ │ │ ├── operator_ltlt__json_pointer.cpp │ │ │ ├── operator_ltlt__json_pointer.output │ │ │ ├── operator_spaceship__const_reference.c++20.cpp │ │ │ ├── operator_spaceship__const_reference.c++20.output │ │ │ ├── operator_spaceship__scalartype.c++20.cpp │ │ │ ├── operator_spaceship__scalartype.c++20.output │ │ │ ├── ordered_json.cpp │ │ │ ├── ordered_json.output │ │ │ ├── ordered_map.cpp │ │ │ ├── ordered_map.output │ │ │ ├── other_error.cpp │ │ │ ├── other_error.output │ │ │ ├── out_of_range.cpp │ │ │ ├── out_of_range.output │ │ │ ├── parse__allow_exceptions.cpp │ │ │ ├── parse__allow_exceptions.output │ │ │ ├── parse__array__parser_callback_t.cpp │ │ │ ├── parse__array__parser_callback_t.output │ │ │ ├── parse__contiguouscontainer__parser_callback_t.cpp │ │ │ ├── parse__contiguouscontainer__parser_callback_t.output │ │ │ ├── parse__istream__parser_callback_t.cpp │ │ │ ├── parse__istream__parser_callback_t.output │ │ │ ├── parse__iterator_pair.cpp │ │ │ ├── parse__iterator_pair.link │ │ │ ├── parse__iterator_pair.output │ │ │ ├── parse__pointers.cpp │ │ │ ├── parse__pointers.link │ │ │ ├── parse__pointers.output │ │ │ ├── parse__string__parser_callback_t.cpp │ │ │ ├── parse__string__parser_callback_t.output │ │ │ ├── parse_error.cpp │ │ │ ├── parse_error.output │ │ │ ├── patch.cpp │ │ │ ├── patch.output │ │ │ ├── patch_inplace.cpp │ │ │ ├── patch_inplace.output │ │ │ ├── push_back.cpp │ │ │ ├── push_back.output │ │ │ ├── push_back__initializer_list.cpp │ │ │ ├── push_back__initializer_list.output │ │ │ ├── push_back__object_t__value.cpp │ │ │ ├── push_back__object_t__value.output │ │ │ ├── rbegin.cpp │ │ │ ├── rbegin.output │ │ │ ├── rend.cpp │ │ │ ├── rend.output │ │ │ ├── sax_parse.cpp │ │ │ ├── sax_parse.output │ │ │ ├── sax_parse__binary.cpp │ │ │ ├── sax_parse__binary.output │ │ │ ├── size.cpp │ │ │ ├── size.output │ │ │ ├── std_hash.cpp │ │ │ ├── std_hash.output │ │ │ ├── std_swap.cpp │ │ │ ├── std_swap.output │ │ │ ├── string_t.cpp │ │ │ ├── string_t.output │ │ │ ├── swap__array_t.cpp │ │ │ ├── swap__array_t.output │ │ │ ├── swap__binary_t.cpp │ │ │ ├── swap__binary_t.output │ │ │ ├── swap__object_t.cpp │ │ │ ├── swap__object_t.output │ │ │ ├── swap__reference.cpp │ │ │ ├── swap__reference.output │ │ │ ├── swap__string_t.cpp │ │ │ ├── swap__string_t.output │ │ │ ├── to_bjdata.cpp │ │ │ ├── to_bjdata.output │ │ │ ├── to_bson.cpp │ │ │ ├── to_bson.output │ │ │ ├── to_cbor.cpp │ │ │ ├── to_cbor.output │ │ │ ├── to_json.cpp │ │ │ ├── to_json.output │ │ │ ├── to_msgpack.cpp │ │ │ ├── to_msgpack.output │ │ │ ├── to_string.cpp │ │ │ ├── to_string.output │ │ │ ├── to_ubjson.cpp │ │ │ ├── to_ubjson.output │ │ │ ├── type.cpp │ │ │ ├── type.output │ │ │ ├── type_error.cpp │ │ │ ├── type_error.output │ │ │ ├── type_name.cpp │ │ │ ├── type_name.output │ │ │ ├── unflatten.cpp │ │ │ ├── unflatten.output │ │ │ ├── update.cpp │ │ │ ├── update.output │ │ │ ├── update__range.cpp │ │ │ ├── update__range.output │ │ │ ├── value__json_ptr.cpp │ │ │ ├── value__json_ptr.output │ │ │ ├── value__keytype.c++17.cpp │ │ │ ├── value__keytype.c++17.output │ │ │ ├── value__object_t_key_type.cpp │ │ │ └── value__object_t_key_type.output │ │ ├── json.gif │ │ ├── mkdocs │ │ │ ├── Makefile │ │ │ ├── docs │ │ │ │ ├── api │ │ │ │ │ ├── adl_serializer │ │ │ │ │ │ ├── from_json.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ └── to_json.md │ │ │ │ │ ├── basic_json │ │ │ │ │ │ ├── accept.md │ │ │ │ │ │ ├── array.md │ │ │ │ │ │ ├── array_t.md │ │ │ │ │ │ ├── at.md │ │ │ │ │ │ ├── back.md │ │ │ │ │ │ ├── basic_json.md │ │ │ │ │ │ ├── begin.md │ │ │ │ │ │ ├── binary.md │ │ │ │ │ │ ├── binary_t.md │ │ │ │ │ │ ├── boolean_t.md │ │ │ │ │ │ ├── cbegin.md │ │ │ │ │ │ ├── cbor_tag_handler_t.md │ │ │ │ │ │ ├── cend.md │ │ │ │ │ │ ├── clear.md │ │ │ │ │ │ ├── contains.md │ │ │ │ │ │ ├── count.md │ │ │ │ │ │ ├── crbegin.md │ │ │ │ │ │ ├── crend.md │ │ │ │ │ │ ├── default_object_comparator_t.md │ │ │ │ │ │ ├── diff.md │ │ │ │ │ │ ├── dump.md │ │ │ │ │ │ ├── emplace.md │ │ │ │ │ │ ├── emplace_back.md │ │ │ │ │ │ ├── empty.md │ │ │ │ │ │ ├── end.md │ │ │ │ │ │ ├── erase.md │ │ │ │ │ │ ├── error_handler_t.md │ │ │ │ │ │ ├── exception.md │ │ │ │ │ │ ├── find.md │ │ │ │ │ │ ├── flatten.md │ │ │ │ │ │ ├── from_bjdata.md │ │ │ │ │ │ ├── from_bson.md │ │ │ │ │ │ ├── from_cbor.md │ │ │ │ │ │ ├── from_msgpack.md │ │ │ │ │ │ ├── from_ubjson.md │ │ │ │ │ │ ├── front.md │ │ │ │ │ │ ├── get.md │ │ │ │ │ │ ├── get_allocator.md │ │ │ │ │ │ ├── get_binary.md │ │ │ │ │ │ ├── get_ptr.md │ │ │ │ │ │ ├── get_ref.md │ │ │ │ │ │ ├── get_to.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ ├── input_format_t.md │ │ │ │ │ │ ├── insert.md │ │ │ │ │ │ ├── invalid_iterator.md │ │ │ │ │ │ ├── is_array.md │ │ │ │ │ │ ├── is_binary.md │ │ │ │ │ │ ├── is_boolean.md │ │ │ │ │ │ ├── is_discarded.md │ │ │ │ │ │ ├── is_null.md │ │ │ │ │ │ ├── is_number.md │ │ │ │ │ │ ├── is_number_float.md │ │ │ │ │ │ ├── is_number_integer.md │ │ │ │ │ │ ├── is_number_unsigned.md │ │ │ │ │ │ ├── is_object.md │ │ │ │ │ │ ├── is_primitive.md │ │ │ │ │ │ ├── is_string.md │ │ │ │ │ │ ├── is_structured.md │ │ │ │ │ │ ├── items.md │ │ │ │ │ │ ├── json_serializer.md │ │ │ │ │ │ ├── max_size.md │ │ │ │ │ │ ├── merge_patch.md │ │ │ │ │ │ ├── meta.md │ │ │ │ │ │ ├── number_float_t.md │ │ │ │ │ │ ├── number_integer_t.md │ │ │ │ │ │ ├── number_unsigned_t.md │ │ │ │ │ │ ├── object.md │ │ │ │ │ │ ├── object_comparator_t.md │ │ │ │ │ │ ├── object_t.md │ │ │ │ │ │ ├── operator+=.md │ │ │ │ │ │ ├── operator=.md │ │ │ │ │ │ ├── operator[].md │ │ │ │ │ │ ├── operator_ValueType.md │ │ │ │ │ │ ├── operator_eq.md │ │ │ │ │ │ ├── operator_ge.md │ │ │ │ │ │ ├── operator_gt.md │ │ │ │ │ │ ├── operator_le.md │ │ │ │ │ │ ├── operator_lt.md │ │ │ │ │ │ ├── operator_ne.md │ │ │ │ │ │ ├── operator_spaceship.md │ │ │ │ │ │ ├── operator_value_t.md │ │ │ │ │ │ ├── other_error.md │ │ │ │ │ │ ├── out_of_range.md │ │ │ │ │ │ ├── parse.md │ │ │ │ │ │ ├── parse_error.md │ │ │ │ │ │ ├── parse_event_t.md │ │ │ │ │ │ ├── parser_callback_t.md │ │ │ │ │ │ ├── patch.md │ │ │ │ │ │ ├── patch_inplace.md │ │ │ │ │ │ ├── push_back.md │ │ │ │ │ │ ├── rbegin.md │ │ │ │ │ │ ├── rend.md │ │ │ │ │ │ ├── sax_parse.md │ │ │ │ │ │ ├── size.md │ │ │ │ │ │ ├── std_hash.md │ │ │ │ │ │ ├── std_swap.md │ │ │ │ │ │ ├── string_t.md │ │ │ │ │ │ ├── swap.md │ │ │ │ │ │ ├── to_bjdata.md │ │ │ │ │ │ ├── to_bson.md │ │ │ │ │ │ ├── to_cbor.md │ │ │ │ │ │ ├── to_msgpack.md │ │ │ │ │ │ ├── to_string.md │ │ │ │ │ │ ├── to_ubjson.md │ │ │ │ │ │ ├── type.md │ │ │ │ │ │ ├── type_error.md │ │ │ │ │ │ ├── type_name.md │ │ │ │ │ │ ├── unflatten.md │ │ │ │ │ │ ├── update.md │ │ │ │ │ │ ├── value.md │ │ │ │ │ │ ├── value_t.md │ │ │ │ │ │ └── ~basic_json.md │ │ │ │ │ ├── byte_container_with_subtype │ │ │ │ │ │ ├── byte_container_with_subtype.md │ │ │ │ │ │ ├── clear_subtype.md │ │ │ │ │ │ ├── has_subtype.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ ├── set_subtype.md │ │ │ │ │ │ └── subtype.md │ │ │ │ │ ├── json.md │ │ │ │ │ ├── json_pointer │ │ │ │ │ │ ├── back.md │ │ │ │ │ │ ├── empty.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ ├── json_pointer.md │ │ │ │ │ │ ├── operator_eq.md │ │ │ │ │ │ ├── operator_ne.md │ │ │ │ │ │ ├── operator_slash.md │ │ │ │ │ │ ├── operator_slasheq.md │ │ │ │ │ │ ├── operator_string_t.md │ │ │ │ │ │ ├── parent_pointer.md │ │ │ │ │ │ ├── pop_back.md │ │ │ │ │ │ ├── push_back.md │ │ │ │ │ │ ├── string_t.md │ │ │ │ │ │ └── to_string.md │ │ │ │ │ ├── json_sax │ │ │ │ │ │ ├── binary.md │ │ │ │ │ │ ├── boolean.md │ │ │ │ │ │ ├── end_array.md │ │ │ │ │ │ ├── end_object.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ ├── key.md │ │ │ │ │ │ ├── null.md │ │ │ │ │ │ ├── number_float.md │ │ │ │ │ │ ├── number_integer.md │ │ │ │ │ │ ├── number_unsigned.md │ │ │ │ │ │ ├── parse_error.md │ │ │ │ │ │ ├── start_array.md │ │ │ │ │ │ ├── start_object.md │ │ │ │ │ │ └── string.md │ │ │ │ │ ├── macros │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ ├── json_assert.md │ │ │ │ │ │ ├── json_diagnostics.md │ │ │ │ │ │ ├── json_disable_enum_serialization.md │ │ │ │ │ │ ├── json_has_cpp_11.md │ │ │ │ │ │ ├── json_has_filesystem.md │ │ │ │ │ │ ├── json_has_ranges.md │ │ │ │ │ │ ├── json_has_three_way_comparison.md │ │ │ │ │ │ ├── json_no_io.md │ │ │ │ │ │ ├── json_noexception.md │ │ │ │ │ │ ├── json_skip_library_version_check.md │ │ │ │ │ │ ├── json_skip_unsupported_compiler_check.md │ │ │ │ │ │ ├── json_throw_user.md │ │ │ │ │ │ ├── json_use_global_udls.md │ │ │ │ │ │ ├── json_use_implicit_conversions.md │ │ │ │ │ │ ├── json_use_legacy_discarded_value_comparison.md │ │ │ │ │ │ ├── nlohmann_define_type_intrusive.md │ │ │ │ │ │ ├── nlohmann_define_type_non_intrusive.md │ │ │ │ │ │ ├── nlohmann_json_namespace.md │ │ │ │ │ │ ├── nlohmann_json_namespace_begin.md │ │ │ │ │ │ ├── nlohmann_json_namespace_no_version.md │ │ │ │ │ │ ├── nlohmann_json_serialize_enum.md │ │ │ │ │ │ └── nlohmann_json_version_major.md │ │ │ │ │ ├── operator_gtgt.md │ │ │ │ │ ├── operator_literal_json.md │ │ │ │ │ ├── operator_literal_json_pointer.md │ │ │ │ │ ├── operator_ltlt.md │ │ │ │ │ ├── ordered_json.md │ │ │ │ │ └── ordered_map.md │ │ │ │ ├── css │ │ │ │ │ └── custom.css │ │ │ │ ├── features │ │ │ │ │ ├── arbitrary_types.md │ │ │ │ │ ├── assertions.md │ │ │ │ │ ├── binary_formats │ │ │ │ │ │ ├── bjdata.md │ │ │ │ │ │ ├── bson.md │ │ │ │ │ │ ├── cbor.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ ├── messagepack.md │ │ │ │ │ │ └── ubjson.md │ │ │ │ │ ├── binary_values.md │ │ │ │ │ ├── comments.md │ │ │ │ │ ├── element_access │ │ │ │ │ │ ├── checked_access.md │ │ │ │ │ │ ├── default_value.md │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ └── unchecked_access.md │ │ │ │ │ ├── enum_conversion.md │ │ │ │ │ ├── iterators.md │ │ │ │ │ ├── json_patch.md │ │ │ │ │ ├── json_pointer.md │ │ │ │ │ ├── macros.md │ │ │ │ │ ├── merge_patch.md │ │ │ │ │ ├── namespace.md │ │ │ │ │ ├── object_order.md │ │ │ │ │ ├── parsing │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ ├── json_lines.md │ │ │ │ │ │ ├── parse_exceptions.md │ │ │ │ │ │ ├── parser_callbacks.md │ │ │ │ │ │ └── sax_interface.md │ │ │ │ │ └── types │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ └── number_handling.md │ │ │ │ ├── home │ │ │ │ │ ├── code_of_conduct.md │ │ │ │ │ ├── design_goals.md │ │ │ │ │ ├── exceptions.md │ │ │ │ │ ├── faq.md │ │ │ │ │ ├── license.md │ │ │ │ │ ├── releases.md │ │ │ │ │ └── sponsors.md │ │ │ │ ├── images │ │ │ │ │ ├── callback_events.png │ │ │ │ │ ├── json_syntax_number.png │ │ │ │ │ ├── range-begin-end.svg │ │ │ │ │ └── range-rbegin-rend.svg │ │ │ │ ├── index.md │ │ │ │ └── integration │ │ │ │ │ ├── cmake.md │ │ │ │ │ ├── conan │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── Conanfile.txt │ │ │ │ │ └── example.cpp │ │ │ │ │ ├── example.cpp │ │ │ │ │ ├── index.md │ │ │ │ │ ├── package_managers.md │ │ │ │ │ ├── pkg-config.md │ │ │ │ │ └── vcpkg │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── example.cpp │ │ │ ├── mkdocs.yml │ │ │ ├── requirements.txt │ │ │ └── scripts │ │ │ │ └── check_structure.py │ │ └── usages │ │ │ ├── ios.png │ │ │ └── macos.png │ ├── include │ │ └── nlohmann │ │ │ ├── adl_serializer.hpp │ │ │ ├── byte_container_with_subtype.hpp │ │ │ ├── detail │ │ │ ├── abi_macros.hpp │ │ │ ├── conversions │ │ │ │ ├── from_json.hpp │ │ │ │ ├── to_chars.hpp │ │ │ │ └── to_json.hpp │ │ │ ├── exceptions.hpp │ │ │ ├── hash.hpp │ │ │ ├── input │ │ │ │ ├── binary_reader.hpp │ │ │ │ ├── input_adapters.hpp │ │ │ │ ├── json_sax.hpp │ │ │ │ ├── lexer.hpp │ │ │ │ ├── parser.hpp │ │ │ │ └── position_t.hpp │ │ │ ├── iterators │ │ │ │ ├── internal_iterator.hpp │ │ │ │ ├── iter_impl.hpp │ │ │ │ ├── iteration_proxy.hpp │ │ │ │ ├── iterator_traits.hpp │ │ │ │ ├── json_reverse_iterator.hpp │ │ │ │ └── primitive_iterator.hpp │ │ │ ├── json_pointer.hpp │ │ │ ├── json_ref.hpp │ │ │ ├── macro_scope.hpp │ │ │ ├── macro_unscope.hpp │ │ │ ├── meta │ │ │ │ ├── call_std │ │ │ │ │ ├── begin.hpp │ │ │ │ │ └── end.hpp │ │ │ │ ├── cpp_future.hpp │ │ │ │ ├── detected.hpp │ │ │ │ ├── identity_tag.hpp │ │ │ │ ├── is_sax.hpp │ │ │ │ ├── std_fs.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ └── void_t.hpp │ │ │ ├── output │ │ │ │ ├── binary_writer.hpp │ │ │ │ ├── output_adapters.hpp │ │ │ │ └── serializer.hpp │ │ │ ├── string_concat.hpp │ │ │ ├── string_escape.hpp │ │ │ └── value_t.hpp │ │ │ ├── json.hpp │ │ │ ├── json_fwd.hpp │ │ │ ├── ordered_map.hpp │ │ │ └── thirdparty │ │ │ └── hedley │ │ │ ├── hedley.hpp │ │ │ └── hedley_undef.hpp │ ├── meson.build │ ├── nlohmann_json.natvis │ ├── single_include │ │ └── nlohmann │ │ │ ├── json.hpp │ │ │ └── json_fwd.hpp │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── abi │ │ │ ├── CMakeLists.txt │ │ │ ├── config │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── config.hpp │ │ │ │ ├── custom.cpp │ │ │ │ ├── default.cpp │ │ │ │ └── noversion.cpp │ │ │ ├── diag │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── diag.cpp │ │ │ │ ├── diag.hpp │ │ │ │ ├── diag_off.cpp │ │ │ │ └── diag_on.cpp │ │ │ ├── include │ │ │ │ └── nlohmann │ │ │ │ │ └── json_v3_10_5.hpp │ │ │ ├── inline_ns │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── use_current.cpp │ │ │ │ └── use_v3_10_5.cpp │ │ │ └── main.cpp │ │ ├── benchmarks │ │ │ ├── CMakeLists.txt │ │ │ └── src │ │ │ │ └── benchmarks.cpp │ │ ├── cmake_add_subdirectory │ │ │ ├── CMakeLists.txt │ │ │ └── project │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ ├── cmake_fetch_content │ │ │ ├── CMakeLists.txt │ │ │ └── project │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ ├── cmake_fetch_content2 │ │ │ ├── CMakeLists.txt │ │ │ └── project │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ ├── cmake_import │ │ │ ├── CMakeLists.txt │ │ │ └── project │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ ├── cmake_import_minver │ │ │ ├── CMakeLists.txt │ │ │ └── project │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.cpp │ │ ├── cmake_target_include_directories │ │ │ ├── CMakeLists.txt │ │ │ └── project │ │ │ │ ├── Bar.cpp │ │ │ │ ├── Bar.hpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Foo.cpp │ │ │ │ ├── Foo.hpp │ │ │ │ └── main.cpp │ │ ├── cuda_example │ │ │ ├── CMakeLists.txt │ │ │ └── json_cuda.cu │ │ ├── fuzzing.md │ │ ├── reports │ │ │ ├── 2016-08-29-fuzz │ │ │ │ ├── exec_speed.png │ │ │ │ ├── fuzz.tiff │ │ │ │ ├── high_freq.png │ │ │ │ ├── index.html │ │ │ │ └── low_freq.png │ │ │ ├── 2016-09-09-nativejson_benchmark │ │ │ │ ├── README.md │ │ │ │ ├── conformance_Nlohmann (C++11).md │ │ │ │ ├── conformance_overall_Result.png │ │ │ │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_1._Parse_Memory_(byte).png │ │ │ │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_1._Parse_Time_(ms).png │ │ │ │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_2._Stringify_Time_(ms).png │ │ │ │ ├── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_3._Prettify_Time_(ms).png │ │ │ │ └── performance_Corei7-4980HQ@2.80GHz_mac64_clang7.0_7._Code_size_FileSize_(byte).png │ │ │ └── 2016-10-02-fuzz │ │ │ │ ├── exec_speed.png │ │ │ │ ├── fuzz.tiff │ │ │ │ ├── high_freq.png │ │ │ │ ├── index.html │ │ │ │ └── low_freq.png │ │ ├── src │ │ │ ├── fuzzer-driver_afl.cpp │ │ │ ├── fuzzer-parse_bjdata.cpp │ │ │ ├── fuzzer-parse_bson.cpp │ │ │ ├── fuzzer-parse_cbor.cpp │ │ │ ├── fuzzer-parse_json.cpp │ │ │ ├── fuzzer-parse_msgpack.cpp │ │ │ ├── fuzzer-parse_ubjson.cpp │ │ │ ├── make_test_data_available.hpp │ │ │ ├── test_utils.hpp │ │ │ ├── unit-32bit.cpp │ │ │ ├── unit-algorithms.cpp │ │ │ ├── unit-allocator.cpp │ │ │ ├── unit-alt-string.cpp │ │ │ ├── unit-assert_macro.cpp │ │ │ ├── unit-binary_formats.cpp │ │ │ ├── unit-bjdata.cpp │ │ │ ├── unit-bson.cpp │ │ │ ├── unit-byte_container_with_subtype.cpp │ │ │ ├── unit-capacity.cpp │ │ │ ├── unit-cbor.cpp │ │ │ ├── unit-class_const_iterator.cpp │ │ │ ├── unit-class_iterator.cpp │ │ │ ├── unit-class_lexer.cpp │ │ │ ├── unit-class_parser.cpp │ │ │ ├── unit-comparison.cpp │ │ │ ├── unit-concepts.cpp │ │ │ ├── unit-constructor1.cpp │ │ │ ├── unit-constructor2.cpp │ │ │ ├── unit-convenience.cpp │ │ │ ├── unit-conversions.cpp │ │ │ ├── unit-deserialization.cpp │ │ │ ├── unit-diagnostics.cpp │ │ │ ├── unit-disabled_exceptions.cpp │ │ │ ├── unit-element_access1.cpp │ │ │ ├── unit-element_access2.cpp │ │ │ ├── unit-hash.cpp │ │ │ ├── unit-inspection.cpp │ │ │ ├── unit-items.cpp │ │ │ ├── unit-iterators1.cpp │ │ │ ├── unit-iterators2.cpp │ │ │ ├── unit-json_patch.cpp │ │ │ ├── unit-json_pointer.cpp │ │ │ ├── unit-large_json.cpp │ │ │ ├── unit-merge_patch.cpp │ │ │ ├── unit-meta.cpp │ │ │ ├── unit-modifiers.cpp │ │ │ ├── unit-msgpack.cpp │ │ │ ├── unit-noexcept.cpp │ │ │ ├── unit-ordered_json.cpp │ │ │ ├── unit-ordered_map.cpp │ │ │ ├── unit-pointer_access.cpp │ │ │ ├── unit-readme.cpp │ │ │ ├── unit-reference_access.cpp │ │ │ ├── unit-regression1.cpp │ │ │ ├── unit-regression2.cpp │ │ │ ├── unit-serialization.cpp │ │ │ ├── unit-testsuites.cpp │ │ │ ├── unit-to_chars.cpp │ │ │ ├── unit-type_traits.cpp │ │ │ ├── unit-ubjson.cpp │ │ │ ├── unit-udl.cpp │ │ │ ├── unit-udt.cpp │ │ │ ├── unit-udt_macro.cpp │ │ │ ├── unit-unicode1.cpp │ │ │ ├── unit-unicode2.cpp │ │ │ ├── unit-unicode3.cpp │ │ │ ├── unit-unicode4.cpp │ │ │ ├── unit-unicode5.cpp │ │ │ ├── unit-user_defined_input.cpp │ │ │ ├── unit-windows_h.cpp │ │ │ ├── unit-wstring.cpp │ │ │ └── unit.cpp │ │ └── thirdparty │ │ │ ├── Fuzzer │ │ │ ├── CMakeLists.txt │ │ │ ├── FuzzerCorpus.h │ │ │ ├── FuzzerCrossOver.cpp │ │ │ ├── FuzzerDefs.h │ │ │ ├── FuzzerDictionary.h │ │ │ ├── FuzzerDriver.cpp │ │ │ ├── FuzzerExtFunctions.def │ │ │ ├── FuzzerExtFunctions.h │ │ │ ├── FuzzerExtFunctionsDlsym.cpp │ │ │ ├── FuzzerExtFunctionsWeak.cpp │ │ │ ├── FuzzerExtFunctionsWeakAlias.cpp │ │ │ ├── FuzzerFlags.def │ │ │ ├── FuzzerIO.cpp │ │ │ ├── FuzzerIO.h │ │ │ ├── FuzzerIOPosix.cpp │ │ │ ├── FuzzerIOWindows.cpp │ │ │ ├── FuzzerInterface.h │ │ │ ├── FuzzerInternal.h │ │ │ ├── FuzzerLoop.cpp │ │ │ ├── FuzzerMain.cpp │ │ │ ├── FuzzerMerge.cpp │ │ │ ├── FuzzerMerge.h │ │ │ ├── FuzzerMutate.cpp │ │ │ ├── FuzzerMutate.h │ │ │ ├── FuzzerOptions.h │ │ │ ├── FuzzerRandom.h │ │ │ ├── FuzzerSHA1.cpp │ │ │ ├── FuzzerSHA1.h │ │ │ ├── FuzzerTracePC.cpp │ │ │ ├── FuzzerTracePC.h │ │ │ ├── FuzzerTraceState.cpp │ │ │ ├── FuzzerUtil.cpp │ │ │ ├── FuzzerUtil.h │ │ │ ├── FuzzerUtilDarwin.cpp │ │ │ ├── FuzzerUtilLinux.cpp │ │ │ ├── FuzzerUtilPosix.cpp │ │ │ ├── FuzzerUtilWindows.cpp │ │ │ ├── FuzzerValueBitMap.h │ │ │ ├── README.txt │ │ │ ├── afl │ │ │ │ └── afl_driver.cpp │ │ │ ├── build.sh │ │ │ ├── cxx.dict │ │ │ ├── standalone │ │ │ │ └── StandaloneFuzzTargetMain.c │ │ │ └── test │ │ │ │ ├── AFLDriverTest.cpp │ │ │ │ ├── AbsNegAndConstant64Test.cpp │ │ │ │ ├── AbsNegAndConstantTest.cpp │ │ │ │ ├── AccumulateAllocationsTest.cpp │ │ │ │ ├── BufferOverflowOnInput.cpp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── CallerCalleeTest.cpp │ │ │ │ ├── CounterTest.cpp │ │ │ │ ├── CustomCrossOverTest.cpp │ │ │ │ ├── CustomMutatorTest.cpp │ │ │ │ ├── DSO1.cpp │ │ │ │ ├── DSO2.cpp │ │ │ │ ├── DSOTestExtra.cpp │ │ │ │ ├── DSOTestMain.cpp │ │ │ │ ├── DivTest.cpp │ │ │ │ ├── EmptyTest.cpp │ │ │ │ ├── FourIndependentBranchesTest.cpp │ │ │ │ ├── FullCoverageSetTest.cpp │ │ │ │ ├── FuzzerUnittest.cpp │ │ │ │ ├── InitializeTest.cpp │ │ │ │ ├── LeakTest.cpp │ │ │ │ ├── LeakTimeoutTest.cpp │ │ │ │ ├── LoadTest.cpp │ │ │ │ ├── MemcmpTest.cpp │ │ │ │ ├── NthRunCrashTest.cpp │ │ │ │ ├── NullDerefOnEmptyTest.cpp │ │ │ │ ├── NullDerefTest.cpp │ │ │ │ ├── OneHugeAllocTest.cpp │ │ │ │ ├── OutOfMemorySingleLargeMallocTest.cpp │ │ │ │ ├── OutOfMemoryTest.cpp │ │ │ │ ├── RepeatedBytesTest.cpp │ │ │ │ ├── RepeatedMemcmp.cpp │ │ │ │ ├── ShrinkControlFlowTest.cpp │ │ │ │ ├── ShrinkValueProfileTest.cpp │ │ │ │ ├── SignedIntOverflowTest.cpp │ │ │ │ ├── SimpleCmpTest.cpp │ │ │ │ ├── SimpleDictionaryTest.cpp │ │ │ │ ├── SimpleHashTest.cpp │ │ │ │ ├── SimpleTest.cpp │ │ │ │ ├── SimpleThreadedTest.cpp │ │ │ │ ├── SingleMemcmpTest.cpp │ │ │ │ ├── SingleStrcmpTest.cpp │ │ │ │ ├── SingleStrncmpTest.cpp │ │ │ │ ├── SpamyTest.cpp │ │ │ │ ├── StrcmpTest.cpp │ │ │ │ ├── StrncmpOOBTest.cpp │ │ │ │ ├── StrncmpTest.cpp │ │ │ │ ├── StrstrTest.cpp │ │ │ │ ├── SwapCmpTest.cpp │ │ │ │ ├── Switch2Test.cpp │ │ │ │ ├── SwitchTest.cpp │ │ │ │ ├── ThreadedLeakTest.cpp │ │ │ │ ├── ThreadedTest.cpp │ │ │ │ ├── TimeoutEmptyTest.cpp │ │ │ │ ├── TimeoutTest.cpp │ │ │ │ ├── TraceMallocTest.cpp │ │ │ │ ├── UninstrumentedTest.cpp │ │ │ │ ├── afl-driver-extra-stats.test │ │ │ │ ├── afl-driver-stderr.test │ │ │ │ ├── caller-callee.test │ │ │ │ ├── coverage.test │ │ │ │ ├── dict1.txt │ │ │ │ ├── dump_coverage.test │ │ │ │ ├── fuzzer-customcrossover.test │ │ │ │ ├── fuzzer-custommutator.test │ │ │ │ ├── fuzzer-dict.test │ │ │ │ ├── fuzzer-dirs.test │ │ │ │ ├── fuzzer-fdmask.test │ │ │ │ ├── fuzzer-finalstats.test │ │ │ │ ├── fuzzer-flags.test │ │ │ │ ├── fuzzer-jobs.test │ │ │ │ ├── fuzzer-leak.test │ │ │ │ ├── fuzzer-oom-with-profile.test │ │ │ │ ├── fuzzer-oom.test │ │ │ │ ├── fuzzer-printcovpcs.test │ │ │ │ ├── fuzzer-runs.test │ │ │ │ ├── fuzzer-seed.test │ │ │ │ ├── fuzzer-segv.test │ │ │ │ ├── fuzzer-singleinputs.test │ │ │ │ ├── fuzzer-threaded.test │ │ │ │ ├── fuzzer-timeout.test │ │ │ │ ├── fuzzer-traces-hooks.test │ │ │ │ ├── fuzzer-ubsan.test │ │ │ │ ├── fuzzer.test │ │ │ │ ├── hi.txt │ │ │ │ ├── lit.cfg │ │ │ │ ├── lit.site.cfg.in │ │ │ │ ├── merge.test │ │ │ │ ├── minimize_crash.test │ │ │ │ ├── no-coverage │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── repeated-bytes.test │ │ │ │ ├── shrink.test │ │ │ │ ├── simple-cmp.test │ │ │ │ ├── standalone.test │ │ │ │ ├── swap-cmp.test │ │ │ │ ├── trace-malloc.test │ │ │ │ ├── ubsan │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── ulimit.test │ │ │ │ ├── uninstrumented │ │ │ │ └── CMakeLists.txt │ │ │ │ ├── unit │ │ │ │ ├── lit.cfg │ │ │ │ └── lit.site.cfg.in │ │ │ │ ├── value-profile-cmp.test │ │ │ │ ├── value-profile-cmp2.test │ │ │ │ ├── value-profile-cmp3.test │ │ │ │ ├── value-profile-cmp4.test │ │ │ │ ├── value-profile-div.test │ │ │ │ ├── value-profile-load.test │ │ │ │ ├── value-profile-mem.test │ │ │ │ ├── value-profile-set.test │ │ │ │ ├── value-profile-strcmp.test │ │ │ │ ├── value-profile-strncmp.test │ │ │ │ └── value-profile-switch.test │ │ │ ├── doctest │ │ │ ├── doctest.h │ │ │ └── doctest_compatibility.h │ │ │ ├── fifo_map │ │ │ └── fifo_map.hpp │ │ │ └── imapdl │ │ │ └── filterbr.py │ ├── tools │ │ ├── amalgamate │ │ │ ├── CHANGES.md │ │ │ ├── README.md │ │ │ ├── amalgamate.py │ │ │ ├── config_json.json │ │ │ └── config_json_fwd.json │ │ ├── cpplint │ │ │ ├── README.rst │ │ │ ├── cpplint.py │ │ │ └── update.sh │ │ ├── gdb_pretty_printer │ │ │ ├── README.md │ │ │ └── nlohmann-json.py │ │ ├── generate_natvis │ │ │ ├── README.md │ │ │ ├── generate_natvis.py │ │ │ └── nlohmann_json.natvis.j2 │ │ ├── macro_builder │ │ │ └── main.cpp │ │ └── serve_header │ │ │ ├── README.md │ │ │ ├── demo.png │ │ │ ├── requirements.txt │ │ │ ├── serve_header.py │ │ │ └── serve_header.yml.example │ └── wsjcpp.yml ├── libuuid-1.0.3.tar.gz └── zlib-1.2.8 │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── INDEX │ ├── Makefile │ ├── Makefile.in │ ├── README │ ├── adler32.c │ ├── amiga │ ├── Makefile.pup │ └── Makefile.sas │ ├── as400 │ ├── bndsrc │ ├── compile.clp │ ├── readme.txt │ └── zlib.inc │ ├── 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 │ │ └── 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 │ ├── 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.cmakein │ ├── zconf.h.in │ ├── zconf.h.included │ ├── zlib.3 │ ├── zlib.3.pdf │ ├── zlib.h │ ├── zlib.map │ ├── zlib.pc.cmakein │ ├── zlib.pc.in │ ├── zlib2ansi │ ├── zutil.c │ └── zutil.h ├── mexSrc ├── compile_createZarrFile.m ├── compile_parallelReadZarr.m ├── compile_parallelWriteZarr.m ├── createzarrfilemex.cpp ├── parallelreadzarrmex.cpp ├── parallelwritezarrmex.cpp └── tests.m ├── python ├── cppzarr.cpp ├── cppzarr │ ├── __init__.py │ └── cppzarrwrappers.py ├── pyproject.toml └── setup.py └── src ├── helperfunctions.cpp ├── helperfunctions.h ├── parallelreadzarr.cpp ├── parallelreadzarr.h ├── parallelwritezarr.cpp ├── parallelwritezarr.h ├── zarr.cpp └── zarr.h /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/README.md -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/.editorconfig -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/.github/dependabot.yml -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/.github/workflows/fuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/.github/workflows/fuzz.yml -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/.gitignore -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/.mailmap -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/ANNOUNCE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/ANNOUNCE.rst -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/COMPILING_WITH_WHEELS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/COMPILING_WITH_WHEELS.rst -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/CONTRIBUTING.md -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/FAQ.md -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/FUNDING.yml -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/LICENSE.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/LICENSES/BITSHUFFLE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/LICENSES/BITSHUFFLE.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/LICENSES/FASTLZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/LICENSES/FASTLZ.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/LICENSES/LZ4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/LICENSES/LZ4.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/LICENSES/SNAPPY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/LICENSES/SNAPPY.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/LICENSES/STDINT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/LICENSES/STDINT.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/LICENSES/ZLIB-NG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/LICENSES/ZLIB-NG.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/LICENSES/ZLIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/LICENSES/ZLIB.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/README.md -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/README_CHUNK_FORMAT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/README_CHUNK_FORMAT.rst -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/README_THREADED.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/README_THREADED.rst -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/RELEASE_NOTES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/RELEASE_NOTES.rst -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/RELEASING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/RELEASING.rst -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/THANKS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/THANKS.rst -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/bench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/bench/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/bench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/bench/Makefile -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/bench/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/bench/Makefile.mingw -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/bench/bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/bench/bench.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/bench/plot-speeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/bench/plot-speeds.py -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc.pc.in -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/bitshuffle-avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/bitshuffle-avx2.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/bitshuffle-avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/bitshuffle-avx2.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/bitshuffle-generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/bitshuffle-generic.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/bitshuffle-generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/bitshuffle-generic.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/bitshuffle-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/bitshuffle-sse2.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/bitshuffle-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/bitshuffle-sse2.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/blosc-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/blosc-common.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/blosc-comp-features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/blosc-comp-features.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/blosc-export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/blosc-export.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/blosc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/blosc.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/blosc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/blosc.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/blosclz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/blosclz.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/blosclz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/blosclz.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/config.h.in -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/fastcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/fastcopy.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/fastcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/fastcopy.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/shuffle-avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/shuffle-avx2.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/shuffle-avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/shuffle-avx2.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/shuffle-generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/shuffle-generic.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/shuffle-generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/shuffle-generic.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/shuffle-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/shuffle-sse2.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/shuffle-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/shuffle-sse2.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/shuffle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/shuffle.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/shuffle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/shuffle.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/win32/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/win32/pthread.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/blosc/win32/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/blosc/win32/pthread.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/cmake/FindLZ4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/cmake/FindLZ4.cmake -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/cmake/FindSnappy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/cmake/FindSnappy.cmake -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/cmake/FindZstd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/cmake/FindZstd.cmake -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/code_of_conduct.md -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/compat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/compat/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/compat/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/compat/README.rst -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/compat/filegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/compat/filegen.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/examples/README.rst -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/examples/many_compressors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/examples/many_compressors.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/examples/multithread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/examples/multithread.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/examples/noinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/examples/noinit.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/examples/simple.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/Makefile -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/check_symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/check_symbols.py -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/fuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/fuzz/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/fuzz/fuzz_compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/fuzz/fuzz_compress.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/fuzz/standalone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/fuzz/standalone.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/gcc-segfault-issue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/gcc-segfault-issue.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/print_versions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/print_versions.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/test_all.sh -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/test_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/test_api.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/test_common.h -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/test_compressor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/test_compressor.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/test_forksafe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/test_forksafe.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/test_getitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/test_getitem.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/test_getitem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/test_getitem.csv -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/test_maxout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/test_maxout.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/test_noinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/test_noinit.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/test_nolock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/test_nolock.c -------------------------------------------------------------------------------- /dependencies/c-blosc-1.21.6/tests/test_nthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc-1.21.6/tests/test_nthreads.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/.editorconfig -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/.github/dependabot.yml -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/.github/workflows/fuzz.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/.github/workflows/fuzz.yml -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/.gitignore -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/.guix-channel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/.guix-channel -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/.mailmap -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/.readthedocs.yaml -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/ANNOUNCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/ANNOUNCE.md -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/Blosc2Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/Blosc2Config.cmake.in -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/COMPILING_WITH_WHEELS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/COMPILING_WITH_WHEELS.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/CONTRIBUTING.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/DEVELOPING-GUIDE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/DEVELOPING-GUIDE.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/FAQ.md -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/FUNDING.yml -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/LICENSE.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/LICENSES/BITSHUFFLE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/LICENSES/BITSHUFFLE.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/LICENSES/FASTLZ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/LICENSES/FASTLZ.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/LICENSES/LZ4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/LICENSES/LZ4.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/LICENSES/ZLIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/LICENSES/ZLIB.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/LICENSES/ZSTD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/LICENSES/ZSTD.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/README.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/README_ARM.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/README_ARM.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/README_B2ND_METALAYER.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/README_B2ND_METALAYER.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/README_CFRAME_FORMAT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/README_CFRAME_FORMAT.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/README_CHUNK_FORMAT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/README_CHUNK_FORMAT.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/README_FUZZER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/README_FUZZER.md -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/README_SFRAME_FORMAT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/README_SFRAME_FORMAT.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/README_THREADED.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/README_THREADED.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/RELEASE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/RELEASE_NOTES.md -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/RELEASING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/RELEASING.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/ROADMAP.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/ROADMAP.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/THANKS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/THANKS.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/TODO-refactorization.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/TODO-refactorization.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/Makefile -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/Makefile.mingw -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/b2bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/b2bench.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/b2nd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/b2nd/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/create_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/create_frame.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/delta_schunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/delta_schunk.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/plot-speeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/plot-speeds.py -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/read-grid-150x150.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/read-grid-150x150.py -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/sframe_bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/sframe_bench.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/sum_openmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/sum_openmp.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/trunc_prec_schunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/trunc_prec_schunk.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/bench/zero_runlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/bench/zero_runlen.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/b2nd-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/b2nd-private.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/b2nd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/b2nd.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/b2nd_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/b2nd_utils.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/bitshuffle-altivec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/bitshuffle-altivec.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/bitshuffle-altivec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/bitshuffle-altivec.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/bitshuffle-avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/bitshuffle-avx2.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/bitshuffle-avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/bitshuffle-avx2.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/bitshuffle-avx512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/bitshuffle-avx512.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/bitshuffle-avx512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/bitshuffle-avx512.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/bitshuffle-generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/bitshuffle-generic.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/bitshuffle-generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/bitshuffle-generic.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/bitshuffle-neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/bitshuffle-neon.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/bitshuffle-neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/bitshuffle-neon.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/bitshuffle-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/bitshuffle-sse2.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/bitshuffle-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/bitshuffle-sse2.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/blosc-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/blosc-private.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/blosc2-stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/blosc2-stdio.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/blosc2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/blosc2.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/blosclz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/blosclz.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/blosclz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/blosclz.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/config.h.in -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/context.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/delta.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/delta.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/directories.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/directories.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/fastcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/fastcopy.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/fastcopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/fastcopy.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/frame.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/frame.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/schunk-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/schunk-private.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/schunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/schunk.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/sframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/sframe.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/sframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/sframe.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/shuffle-altivec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/shuffle-altivec.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/shuffle-altivec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/shuffle-altivec.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/shuffle-avx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/shuffle-avx2.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/shuffle-avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/shuffle-avx2.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/shuffle-generic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/shuffle-generic.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/shuffle-generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/shuffle-generic.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/shuffle-neon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/shuffle-neon.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/shuffle-neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/shuffle-neon.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/shuffle-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/shuffle-sse2.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/shuffle-sse2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/shuffle-sse2.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/shuffle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/shuffle.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/shuffle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/shuffle.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/stune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/stune.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/stune.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/stune.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/timestamp.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/transpose-altivec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/transpose-altivec.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/trunc-prec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/trunc-prec.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/trunc-prec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/trunc-prec.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/win32/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/win32/pthread.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc/win32/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc/win32/pthread.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/blosc2.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/blosc2.pc.in -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/cmake/FindIPP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/cmake/FindIPP.cmake -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/cmake/FindLZ4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/cmake/FindLZ4.cmake -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/cmake/FindSIMD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/cmake/FindSIMD.cmake -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/cmake/FindZLIB_NG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/cmake/FindZLIB_NG.cmake -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/cmake/FindZSTD.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/cmake/FindZSTD.cmake -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/code_of_conduct.md -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/compat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/compat/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/compat/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/compat/README.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/compat/filegen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/compat/filegen.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/Doxyfile -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/_static/css/custom.css -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/c-blosc2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/c-blosc2.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/conf.py -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/development/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/development/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/development/index.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/development/releasing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../RELEASING.rst 2 | -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/development/roadmap.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../ROADMAP.rst 2 | -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/environment.yml -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/format/chunk_format.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../README_CHUNK_FORMAT.rst 2 | -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/format/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/format/index.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/index.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/reference/b2nd.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/reference/b2nd.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/reference/blosc1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/reference/blosc1.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/reference/context.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/reference/context.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/reference/index.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/reference/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/reference/plugins.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/reference/schunk.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/reference/schunk.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/doc/requirements.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/README.rst -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/compress_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/compress_file.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/contexts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/contexts.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/decompress_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/decompress_file.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/delta_schunk_ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/delta_schunk_ex.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/find_roots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/find_roots.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/frame_big.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/frame_big.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/frame_offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/frame_offset.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/frame_roundtrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/frame_roundtrip.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/frame_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/frame_simple.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/get_blocksize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/get_blocksize.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/get_set_slice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/get_set_slice.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/multithread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/multithread.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/noinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/noinit.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/schunk_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/schunk_simple.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/sframe_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/sframe_simple.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/simple.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/urcodecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/urcodecs.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/urfilters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/urfilters.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/examples/zstd_dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/examples/zstd_dict.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/guix.scm: -------------------------------------------------------------------------------- 1 | .guix/modules/c-blosc2-package.scm -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/images/blosc2-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/images/blosc2-pipeline.png -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/images/blosc2-pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/images/blosc2-pipeline.svg -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/include/b2nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/include/b2nd.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/include/blosc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/include/blosc2.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/plugins/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/plugins/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/plugins/README.md -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/plugins/codecs/ndlz/ndlz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/plugins/codecs/ndlz/ndlz.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/plugins/codecs/ndlz/ndlz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/plugins/codecs/ndlz/ndlz.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/plugins/codecs/zfp/src/block1.h: -------------------------------------------------------------------------------- 1 | #define DIMS 1 2 | -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/plugins/codecs/zfp/src/block2.h: -------------------------------------------------------------------------------- 1 | #define DIMS 2 2 | -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/plugins/codecs/zfp/src/block3.h: -------------------------------------------------------------------------------- 1 | #define DIMS 3 2 | -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/plugins/codecs/zfp/src/block4.h: -------------------------------------------------------------------------------- 1 | #define DIMS 4 2 | -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/Makefile -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/b2nd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/b2nd/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/b2nd/cutest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/b2nd/cutest.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/b2nd/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/b2nd/test_common.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/cutest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/cutest.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/fuzz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/fuzz/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/fuzz/README.md -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/fuzz/standalone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/fuzz/standalone.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/gcc-segfault-issue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/gcc-segfault-issue.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/print_versions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/print_versions.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_all.sh -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_api.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_blosc1_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_blosc1_compat.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_common.h -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_compressor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_compressor.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_contexts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_contexts.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_copy.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_delete_chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_delete_chunk.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_delta.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_delta_schunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_delta_schunk.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_dict_schunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_dict_schunk.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_empty_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_empty_buffer.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_fill_special.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_fill_special.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_filters.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_frame.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_frame_offset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_frame_offset.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_getitem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_getitem.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_getitem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_getitem.csv -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_getitem_delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_getitem_delta.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_insert_chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_insert_chunk.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_lazychunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_lazychunk.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_maskout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_maskout.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_maxout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_maxout.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_mmap.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_noinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_noinit.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_nolock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_nolock.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_nthreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_nthreads.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_postfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_postfilter.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_prefilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_prefilter.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_schunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_schunk.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_schunk_frame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_schunk_frame.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_schunk_header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_schunk_header.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_sframe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_sframe.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_small_chunks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_small_chunks.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_udio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_udio.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_update_chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_update_chunk.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_urcodecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_urcodecs.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_urfilters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_urfilters.c -------------------------------------------------------------------------------- /dependencies/c-blosc2-2.15.2/tests/test_zero_runlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/c-blosc2-2.15.2/tests/test_zero_runlen.c -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.clang-format -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.clang-tidy -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/CODEOWNERS -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/FUNDING.yml -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/SECURITY.md -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/config.yml -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/external_ci/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/external_ci/.drone.yml -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/labeler.yml -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/stale.yml -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/workflows/macos.yml -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.github/workflows/windows.yml -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.gitignore -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.lgtm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.lgtm.yml -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.reuse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.reuse/README.md -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.reuse/dep5 -------------------------------------------------------------------------------- /dependencies/json-3.11.2/.reuse/templates/json.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/.reuse/templates/json.jinja2 -------------------------------------------------------------------------------- /dependencies/json-3.11.2/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/CITATION.cff -------------------------------------------------------------------------------- /dependencies/json-3.11.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/json-3.11.2/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/ChangeLog.md -------------------------------------------------------------------------------- /dependencies/json-3.11.2/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/LICENSE.MIT -------------------------------------------------------------------------------- /dependencies/json-3.11.2/LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /dependencies/json-3.11.2/LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /dependencies/json-3.11.2/LICENSES/GPL-3.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/LICENSES/GPL-3.0-only.txt -------------------------------------------------------------------------------- /dependencies/json-3.11.2/LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/LICENSES/MIT.txt -------------------------------------------------------------------------------- /dependencies/json-3.11.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/Makefile -------------------------------------------------------------------------------- /dependencies/json-3.11.2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/README.md -------------------------------------------------------------------------------- /dependencies/json-3.11.2/cmake/ci.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/cmake/ci.cmake -------------------------------------------------------------------------------- /dependencies/json-3.11.2/cmake/config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/cmake/config.cmake.in -------------------------------------------------------------------------------- /dependencies/json-3.11.2/cmake/download_test_data.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/cmake/download_test_data.cmake -------------------------------------------------------------------------------- /dependencies/json-3.11.2/cmake/pkg-config.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/cmake/pkg-config.pc.in -------------------------------------------------------------------------------- /dependencies/json-3.11.2/cmake/test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/cmake/test.cmake -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/Makefile -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/README.md -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/avatars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/avatars.png -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/docset/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/docset/Info.plist -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/docset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/docset/Makefile -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/docset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/docset/README.md -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/docset/docSet.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/docset/docSet.sql -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/docset/docset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/docset/docset.json -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/docset/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/docset/icon.png -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/docset/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/docset/icon@2x.png -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/README.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/README.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/README.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/README.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/accept__string.output: -------------------------------------------------------------------------------- 1 | true false 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/array.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/array.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/array.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/array_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/array_t.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/array_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/back.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/back.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/back.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/basic_json__copyassignment.output: -------------------------------------------------------------------------------- 1 | 23 2 | 23 3 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/basic_json__moveconstructor.output: -------------------------------------------------------------------------------- 1 | null 2 | 23 3 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/basic_json__value_t.output: -------------------------------------------------------------------------------- 1 | null 2 | false 3 | 0 4 | 0.0 5 | {} 6 | [] 7 | "" 8 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/begin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/begin.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/begin.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/binary.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/binary.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/binary.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/binary_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/binary_t.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/binary_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/boolean_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/boolean_t.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/boolean_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/cbegin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/cbegin.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/cbegin.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/cend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/cend.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/cend.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/clear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/clear.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/clear.output: -------------------------------------------------------------------------------- 1 | null 2 | false 3 | 0 4 | 0.0 5 | {} 6 | [] 7 | "" 8 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/crbegin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/crbegin.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/crbegin.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/crend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/crend.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/crend.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/diff.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/diff.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/diff.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/dump.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/dump.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/dump.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/emplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/emplace.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/emplace.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/emplace.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/emplace_back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/emplace_back.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/empty.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/empty.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/empty.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/end.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/end.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/end.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/erase__keytype.c++17.output: -------------------------------------------------------------------------------- 1 | {"two":2} 2 | 1 0 3 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/erase__object_t_key_type.output: -------------------------------------------------------------------------------- 1 | {"two":2} 2 | 1 0 3 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/erase__size_type.output: -------------------------------------------------------------------------------- 1 | [0,1,3,4,5] 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/exception.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/exception.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/exception.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/flatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/flatten.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/flatten.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/flatten.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/from_bjdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/from_bjdata.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/from_bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/from_bson.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/from_bson.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/from_bson.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/from_cbor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/from_cbor.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/from_cbor.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/from_cbor.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/from_json__default_constructible.output: -------------------------------------------------------------------------------- 1 | Ned Flanders (60) lives in 744 Evergreen Terrace 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/from_json__non_default_constructible.output: -------------------------------------------------------------------------------- 1 | Ned Flanders (60) lives in 744 Evergreen Terrace 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/from_msgpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/from_msgpack.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/from_ubjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/from_ubjson.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/front.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/front.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/front.output: -------------------------------------------------------------------------------- 1 | true 2 | 17 3 | 23.42 4 | 1 5 | 1 6 | "Hello, world" 7 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/get_allocator.output: -------------------------------------------------------------------------------- 1 | "Hello, world!" 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/get_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/get_binary.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/get_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/get_ptr.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/get_ptr.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/get_ptr.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/get_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/get_ref.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/get_ref.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/get_ref.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/get_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/get_to.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/get_to.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/get_to.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/insert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/insert.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/insert.output: -------------------------------------------------------------------------------- 1 | 10 2 | [1,2,10,3,4] 3 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/insert__ilist.output: -------------------------------------------------------------------------------- 1 | 7 2 | [1,2,3,4,7,8,9] 3 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_array.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_array.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_array.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_binary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_binary.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_binary.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_binary.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_boolean.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_discarded.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_discarded.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_null.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_null.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_null.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_null.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_number.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_number.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_number.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_number.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_object.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_object.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_object.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_primitive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_primitive.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_string.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/is_string.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/is_string.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/items.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/items.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/items.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/json_lines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/json_lines.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/json_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/json_pointer.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/json_pointer__operator_string_t.output: -------------------------------------------------------------------------------- 1 | /foo/0 2 | /a~1b 3 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/json_pointer__string_t.output: -------------------------------------------------------------------------------- 1 | This is a string. 2 | true 3 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/max_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/max_size.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/max_size.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/max_size.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/merge_patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/merge_patch.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/meta.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/meta.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/meta.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/nlohmann_json_namespace.output: -------------------------------------------------------------------------------- 1 | nlohmann::json_abi_v3_11_2 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/nlohmann_json_namespace_begin.c++17.output: -------------------------------------------------------------------------------- 1 | [1,null] 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/nlohmann_json_namespace_no_version.output: -------------------------------------------------------------------------------- 1 | nlohmann::json_abi 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/nlohmann_json_version.output: -------------------------------------------------------------------------------- 1 | JSON for Modern C++ version 3.11.2 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/number_float_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/number_integer_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/number_unsigned_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/object.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/object.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/object.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/object_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/object_t.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/object_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/operator__equal__specializations.output: -------------------------------------------------------------------------------- 1 | true 2 | false 3 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/operator_array__json_pointer_const.output: -------------------------------------------------------------------------------- 1 | 1 2 | "foo" 3 | [1,2] 4 | 2 5 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/operator_array__keytype_const.c++17.output: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/operator_array__object_t_key_type_const.output: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/operator_array__size_type_const.output: -------------------------------------------------------------------------------- 1 | "third" 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/operator_literal_json_pointer.output: -------------------------------------------------------------------------------- 1 | "world" 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/operator_ltlt__json_pointer.output: -------------------------------------------------------------------------------- 1 | /foo/bar/baz 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/ordered_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/ordered_json.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/ordered_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/ordered_map.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/other_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/other_error.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/out_of_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/out_of_range.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/parse__iterator_pair.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/parse__pointers.link: -------------------------------------------------------------------------------- 1 | online -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/parse_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/parse_error.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/patch.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/patch.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/patch.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/push_back.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/push_back.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/push_back.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/push_back.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/rbegin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/rbegin.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/rbegin.output: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/rend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/rend.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/rend.output: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/sax_parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/sax_parse.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/sax_parse.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/sax_parse.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/sax_parse__binary.output: -------------------------------------------------------------------------------- 1 | binary(val=[...]) 2 | 3 | result: true 4 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/size.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/size.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/size.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/std_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/std_hash.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/std_hash.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/std_hash.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/std_swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/std_swap.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/std_swap.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/std_swap.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/string_t.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/string_t.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/string_t.output: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_bjdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/to_bjdata.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_bjdata.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/to_bjdata.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/to_bson.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_bson.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/to_bson.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_cbor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/to_cbor.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_cbor.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/to_cbor.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_json.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/to_json.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_json.output: -------------------------------------------------------------------------------- 1 | {"address":"744 Evergreen Terrace","age":60,"name":"Ned Flanders"} 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_msgpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/to_msgpack.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/to_string.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_string.output: -------------------------------------------------------------------------------- 1 | {"one":1,"two":2} 2 | 3 | 42 4 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_ubjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/to_ubjson.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/to_ubjson.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/to_ubjson.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/type.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/type.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/type.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/type_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/type_error.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/type_name.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/type_name.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/type_name.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/type_name.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/unflatten.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/unflatten.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/unflatten.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/unflatten.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/update.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/update.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/examples/update.output -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/value__json_ptr.output: -------------------------------------------------------------------------------- 1 | 1 42.23 oops false 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/value__keytype.c++17.output: -------------------------------------------------------------------------------- 1 | 1 42.23 oops false 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/examples/value__object_t_key_type.output: -------------------------------------------------------------------------------- 1 | 1 42.23 oops false 2 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/json.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/json.gif -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/mkdocs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/mkdocs/Makefile -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/mkdocs/docs/api/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/mkdocs/docs/api/json.md -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/mkdocs/docs/index.md: -------------------------------------------------------------------------------- 1 | # JSON for Modern C++ 2 | 3 | ![](images/json.gif) 4 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/mkdocs/docs/integration/conan/Conanfile.txt: -------------------------------------------------------------------------------- 1 | [requires] 2 | nlohmann_json/3.7.3 3 | 4 | [generators] 5 | cmake 6 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/mkdocs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/mkdocs/mkdocs.yml -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/usages/ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/usages/ios.png -------------------------------------------------------------------------------- /dependencies/json-3.11.2/docs/usages/macos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/docs/usages/macos.png -------------------------------------------------------------------------------- /dependencies/json-3.11.2/include/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/include/nlohmann/json.hpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/meson.build -------------------------------------------------------------------------------- /dependencies/json-3.11.2/nlohmann_json.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/nlohmann_json.natvis -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/Makefile -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/abi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/abi/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/abi/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/abi/config/config.hpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/abi/config/custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/abi/config/custom.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/abi/diag/diag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/abi/diag/diag.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/abi/diag/diag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/abi/diag/diag.hpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/abi/diag/diag_off.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/abi/diag/diag_off.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/abi/diag/diag_on.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/abi/diag/diag_on.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/abi/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/abi/main.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/fuzzing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/fuzzing.md -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/test_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/test_utils.hpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-32bit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-32bit.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-bjdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-bjdata.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-bson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-bson.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-capacity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-capacity.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-cbor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-cbor.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-concepts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-concepts.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-hash.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-items.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-meta.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-msgpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-msgpack.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-noexcept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-noexcept.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-readme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-readme.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-to_chars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-to_chars.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-ubjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-ubjson.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-udl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-udl.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-udt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-udt.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-unicode1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-unicode1.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-unicode2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-unicode2.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-unicode3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-unicode3.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-unicode4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-unicode4.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-unicode5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-unicode5.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit-wstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit-wstring.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/src/unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tests/src/unit.cpp -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/thirdparty/Fuzzer/README.txt: -------------------------------------------------------------------------------- 1 | Move to http://llvm.org/docs/LibFuzzer.html 2 | 3 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/thirdparty/Fuzzer/test/hi.txt: -------------------------------------------------------------------------------- 1 | Hi! -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tests/thirdparty/Fuzzer/test/ulimit.test: -------------------------------------------------------------------------------- 1 | RUN: ulimit -s 1000 2 | RUN: LLVMFuzzer-SimpleTest 3 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tools/amalgamate/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tools/amalgamate/CHANGES.md -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tools/amalgamate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tools/amalgamate/README.md -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tools/cpplint/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tools/cpplint/README.rst -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tools/cpplint/cpplint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tools/cpplint/cpplint.py -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tools/cpplint/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tools/cpplint/update.sh -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tools/serve_header/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/tools/serve_header/demo.png -------------------------------------------------------------------------------- /dependencies/json-3.11.2/tools/serve_header/requirements.txt: -------------------------------------------------------------------------------- 1 | PyYAML==6.0 2 | watchdog==2.1.7 3 | -------------------------------------------------------------------------------- /dependencies/json-3.11.2/wsjcpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/json-3.11.2/wsjcpp.yml -------------------------------------------------------------------------------- /dependencies/libuuid-1.0.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/libuuid-1.0.3.tar.gz -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/CMakeLists.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/ChangeLog -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/FAQ -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/INDEX -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/Makefile -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/Makefile.in -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/README -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/adler32.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/amiga/Makefile.pup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/amiga/Makefile.pup -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/amiga/Makefile.sas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/amiga/Makefile.sas -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/as400/bndsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/as400/bndsrc -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/as400/compile.clp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/as400/compile.clp -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/as400/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/as400/readme.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/as400/zlib.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/as400/zlib.inc -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/compress.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/configure -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/README.contrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/README.contrib -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/ada/buffer_demo.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/ada/buffer_demo.adb -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/ada/mtest.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/ada/mtest.adb -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/ada/read.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/ada/read.adb -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/ada/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/ada/readme.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/ada/test.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/ada/test.adb -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/ada/zlib-streams.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/ada/zlib-streams.adb -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/ada/zlib-streams.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/ada/zlib-streams.ads -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/ada/zlib-thin.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/ada/zlib-thin.adb -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/ada/zlib-thin.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/ada/zlib-thin.ads -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/ada/zlib.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/ada/zlib.adb -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/ada/zlib.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/ada/zlib.ads -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/ada/zlib.gpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/ada/zlib.gpr -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/amd64/amd64-match.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/amd64/amd64-match.S -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/asm686/README.686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/asm686/README.686 -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/asm686/match.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/asm686/match.S -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/blast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/blast/Makefile -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/blast/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/blast/README -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/blast/blast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/blast/blast.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/blast/blast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/blast/blast.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/blast/test.pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/blast/test.pk -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/blast/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/blast/test.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/delphi/ZLib.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/delphi/ZLib.pas -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/delphi/ZLibConst.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/delphi/ZLibConst.pas -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/delphi/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/delphi/readme.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/delphi/zlibd32.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/delphi/zlibd32.mak -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/dotzlib/DotZLib.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/dotzlib/DotZLib.chm -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/dotzlib/DotZLib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/dotzlib/DotZLib.sln -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/dotzlib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/dotzlib/readme.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/infback9/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/infback9/README -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/infback9/infback9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/infback9/infback9.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/infback9/infback9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/infback9/infback9.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/infback9/inffix9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/infback9/inffix9.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/infback9/inflate9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/infback9/inflate9.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/infback9/inftree9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/infback9/inftree9.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/infback9/inftree9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/infback9/inftree9.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/inflate86/inffas86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/inflate86/inffas86.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/inflate86/inffast.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/inflate86/inffast.S -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/iostream/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/iostream/test.cpp -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/iostream/zfstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/iostream/zfstream.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/iostream2/zstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/iostream2/zstream.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/iostream3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/iostream3/README -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/iostream3/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/iostream3/TODO -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/iostream3/test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/iostream3/test.cc -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/iostream3/zfstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/iostream3/zfstream.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/masmx64/bld_ml64.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/masmx64/bld_ml64.bat -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/masmx64/gvmat64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/masmx64/gvmat64.asm -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/masmx64/inffas8664.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/masmx64/inffas8664.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/masmx64/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/masmx64/readme.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/masmx86/bld_ml32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/masmx86/bld_ml32.bat -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/masmx86/inffas32.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/masmx86/inffas32.asm -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/masmx86/match686.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/masmx86/match686.asm -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/masmx86/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/masmx86/readme.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/Makefile -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/Makefile.am -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/configure.ac -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/crypt.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/ioapi.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/ioapi.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/iowin32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/iowin32.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/iowin32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/iowin32.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/make_vms.com -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/miniunz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/miniunz.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/miniunzip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/miniunzip.1 -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/minizip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/minizip.1 -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/minizip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/minizip.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/mztools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/mztools.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/mztools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/mztools.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/unzip.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/unzip.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/zip.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/minizip/zip.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/pascal/example.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/pascal/example.pas -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/pascal/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/pascal/readme.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/pascal/zlibd32.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/pascal/zlibd32.mak -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/pascal/zlibpas.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/pascal/zlibpas.pas -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/puff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/puff/Makefile -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/puff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/puff/README -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/puff/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/puff/puff.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/puff/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/puff/puff.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/puff/pufftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/puff/pufftest.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/puff/zeros.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/puff/zeros.raw -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/testzlib/testzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/testzlib/testzlib.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/untgz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/untgz/Makefile -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/untgz/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/untgz/Makefile.msc -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/untgz/untgz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/untgz/untgz.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/vstudio/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/vstudio/readme.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/vstudio/vc10/zlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/vstudio/vc10/zlib.rc -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/vstudio/vc11/zlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/vstudio/vc11/zlib.rc -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/contrib/vstudio/vc9/zlib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/contrib/vstudio/vc9/zlib.rc -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/crc32.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/crc32.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/deflate.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/deflate.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/doc/algorithm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/doc/algorithm.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/doc/rfc1950.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/doc/rfc1950.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/doc/rfc1951.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/doc/rfc1951.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/doc/rfc1952.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/doc/rfc1952.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/doc/txtvsbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/doc/txtvsbin.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/examples/README.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/examples/README.examples -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/examples/enough.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/examples/enough.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/examples/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/examples/fitblk.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/examples/gun.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/examples/gzappend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/examples/gzappend.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/examples/gzjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/examples/gzjoin.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/examples/gzlog.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/examples/gzlog.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/examples/zlib_how.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/examples/zlib_how.html -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/examples/zpipe.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/examples/zran.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/gzclose.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/gzguts.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/gzlib.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/gzread.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/gzwrite.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/infback.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/inffast.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/inffast.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/inffixed.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/inflate.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/inflate.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/inftrees.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/inftrees.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/make_vms.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/make_vms.com -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/msdos/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/msdos/Makefile.bor -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/msdos/Makefile.dj2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/msdos/Makefile.dj2 -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/msdos/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/msdos/Makefile.emx -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/msdos/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/msdos/Makefile.msc -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/msdos/Makefile.tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/msdos/Makefile.tc -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/nintendods/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/nintendods/Makefile -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/nintendods/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/nintendods/README -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/old/Makefile.emx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/old/Makefile.emx -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/old/Makefile.riscos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/old/Makefile.riscos -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/old/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/old/README -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/old/descrip.mms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/old/descrip.mms -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/old/os2/Makefile.os2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/old/os2/Makefile.os2 -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/old/os2/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/old/os2/zlib.def -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/old/visual-basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/old/visual-basic.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/qnx/package.qpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/qnx/package.qpg -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/test/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/test/example.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/test/infcover.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/test/infcover.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/test/minigzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/test/minigzip.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/treebuild.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/treebuild.xml -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/trees.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/trees.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/uncompr.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/watcom/watcom_f.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/watcom/watcom_f.mak -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/watcom/watcom_l.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/watcom/watcom_l.mak -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/win32/DLL_FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/win32/DLL_FAQ.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/win32/Makefile.bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/win32/Makefile.bor -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/win32/Makefile.gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/win32/Makefile.gcc -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/win32/Makefile.msc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/win32/Makefile.msc -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/win32/README-WIN32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/win32/README-WIN32.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/win32/VisualC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/win32/VisualC.txt -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/win32/zlib.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/win32/zlib.def -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/win32/zlib1.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/win32/zlib1.rc -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/zconf.h.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/zconf.h.cmakein -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/zconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/zconf.h.in -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/zconf.h.included: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/zconf.h.included -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/zlib.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/zlib.3 -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/zlib.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/zlib.3.pdf -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/zlib.h -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/zlib.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/zlib.map -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/zlib.pc.cmakein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/zlib.pc.cmakein -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/zlib.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/zlib.pc.in -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/zlib2ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/zlib2ansi -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/zutil.c -------------------------------------------------------------------------------- /dependencies/zlib-1.2.8/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/dependencies/zlib-1.2.8/zutil.h -------------------------------------------------------------------------------- /mexSrc/compile_createZarrFile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/mexSrc/compile_createZarrFile.m -------------------------------------------------------------------------------- /mexSrc/compile_parallelReadZarr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/mexSrc/compile_parallelReadZarr.m -------------------------------------------------------------------------------- /mexSrc/compile_parallelWriteZarr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/mexSrc/compile_parallelWriteZarr.m -------------------------------------------------------------------------------- /mexSrc/createzarrfilemex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/mexSrc/createzarrfilemex.cpp -------------------------------------------------------------------------------- /mexSrc/parallelreadzarrmex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/mexSrc/parallelreadzarrmex.cpp -------------------------------------------------------------------------------- /mexSrc/parallelwritezarrmex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/mexSrc/parallelwritezarrmex.cpp -------------------------------------------------------------------------------- /mexSrc/tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/mexSrc/tests.m -------------------------------------------------------------------------------- /python/cppzarr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/python/cppzarr.cpp -------------------------------------------------------------------------------- /python/cppzarr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/python/cppzarr/__init__.py -------------------------------------------------------------------------------- /python/cppzarr/cppzarrwrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/python/cppzarr/cppzarrwrappers.py -------------------------------------------------------------------------------- /python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/python/pyproject.toml -------------------------------------------------------------------------------- /python/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/python/setup.py -------------------------------------------------------------------------------- /src/helperfunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/src/helperfunctions.cpp -------------------------------------------------------------------------------- /src/helperfunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/src/helperfunctions.h -------------------------------------------------------------------------------- /src/parallelreadzarr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/src/parallelreadzarr.cpp -------------------------------------------------------------------------------- /src/parallelreadzarr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/src/parallelreadzarr.h -------------------------------------------------------------------------------- /src/parallelwritezarr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/src/parallelwritezarr.cpp -------------------------------------------------------------------------------- /src/parallelwritezarr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/src/parallelwritezarr.h -------------------------------------------------------------------------------- /src/zarr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/src/zarr.cpp -------------------------------------------------------------------------------- /src/zarr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abcucberkeley/cpp-zarr/HEAD/src/zarr.h --------------------------------------------------------------------------------