├── .editorconfig ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── BUILD ├── CMakeLists.txt ├── LICENSE ├── MANIFEST.in ├── README ├── README.md ├── docs ├── brotli-comparison-study-2015-09-22.pdf ├── brotli.1 ├── decode.h.3 ├── encode.h.3 └── types.h.3 ├── go └── WORKSPACE ├── platformio.ini ├── setup.py ├── src ├── brotli │ ├── decode.h │ ├── encode.h │ ├── port.h │ └── types.h ├── common │ ├── constants.h │ ├── context.h │ ├── dictionary.bin │ ├── dictionary.bin.br │ ├── dictionary.c │ ├── dictionary.h │ ├── platform.h │ ├── transform.c │ ├── transform.h │ └── version.h ├── dec │ ├── bit_reader.c │ ├── bit_reader.h │ ├── decode.c │ ├── huffman.c │ ├── huffman.h │ ├── prefix.h │ ├── state.c │ └── state.h ├── enc │ ├── backward_references.c │ ├── backward_references.h │ ├── backward_references_hq.c │ ├── backward_references_hq.h │ ├── backward_references_inc.h │ ├── bit_cost.c │ ├── bit_cost.h │ ├── bit_cost_inc.h │ ├── block_encoder_inc.h │ ├── block_splitter.c │ ├── block_splitter.h │ ├── block_splitter_inc.h │ ├── brotli_bit_stream.c │ ├── brotli_bit_stream.h │ ├── cluster.c │ ├── cluster.h │ ├── cluster_inc.h │ ├── command.h │ ├── compress_fragment.c │ ├── compress_fragment.h │ ├── compress_fragment_two_pass.c │ ├── compress_fragment_two_pass.h │ ├── dictionary_hash.c │ ├── dictionary_hash.h │ ├── encode.c │ ├── encoder_dict.c │ ├── encoder_dict.h │ ├── entropy_encode.c │ ├── entropy_encode.h │ ├── entropy_encode_static.h │ ├── fast_log.h │ ├── find_match_length.h │ ├── hash.h │ ├── hash_composite_inc.h │ ├── hash_forgetful_chain_inc.h │ ├── hash_longest_match64_inc.h │ ├── hash_longest_match_inc.h │ ├── hash_longest_match_quickly_inc.h │ ├── hash_rolling_inc.h │ ├── hash_to_binary_tree_inc.h │ ├── histogram.c │ ├── histogram.h │ ├── histogram_inc.h │ ├── literal_cost.c │ ├── literal_cost.h │ ├── memory.c │ ├── memory.h │ ├── metablock.c │ ├── metablock.h │ ├── metablock_inc.h │ ├── params.h │ ├── prefix.h │ ├── quality.h │ ├── ringbuffer.h │ ├── static_dict.c │ ├── static_dict.h │ ├── static_dict_lut.h │ ├── utf8_util.c │ ├── utf8_util.h │ └── write_bits.h ├── fuzz │ ├── decode_fuzzer.c │ ├── run_decode_fuzzer.c │ └── test_fuzzer.sh └── tools │ ├── brotli.c │ └── brotli.md └── tests ├── .gitignore ├── README.md ├── data ├── 1000-1.bin ├── 1000-1.bin.br ├── 1000-r.bin ├── 1000-r.bin.br ├── 144.txt ├── 144.txt.br ├── 144.txt.gz ├── 2000-1.bin ├── 2000-1.bin.br ├── 4000-1.bin ├── 4000-1.bin.br ├── 500-1.bin ├── 500-1.bin.br ├── 500-r.bin ├── 500-r.bin.br ├── 6000-1.bin ├── 6000-1.bin.br ├── Readme.md └── sensors.json ├── fs_partition.csv ├── platformio.ini ├── src └── main.cpp └── udp-receive ├── .gitignore ├── platformio.ini └── src └── main.cpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | tests/testdata/* binary 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/BUILD -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/README.md -------------------------------------------------------------------------------- /docs/brotli-comparison-study-2015-09-22.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/docs/brotli-comparison-study-2015-09-22.pdf -------------------------------------------------------------------------------- /docs/brotli.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/docs/brotli.1 -------------------------------------------------------------------------------- /docs/decode.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/docs/decode.h.3 -------------------------------------------------------------------------------- /docs/encode.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/docs/encode.h.3 -------------------------------------------------------------------------------- /docs/types.h.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/docs/types.h.3 -------------------------------------------------------------------------------- /go/WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/go/WORKSPACE -------------------------------------------------------------------------------- /platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/platformio.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/setup.py -------------------------------------------------------------------------------- /src/brotli/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/brotli/decode.h -------------------------------------------------------------------------------- /src/brotli/encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/brotli/encode.h -------------------------------------------------------------------------------- /src/brotli/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/brotli/port.h -------------------------------------------------------------------------------- /src/brotli/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/brotli/types.h -------------------------------------------------------------------------------- /src/common/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/common/constants.h -------------------------------------------------------------------------------- /src/common/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/common/context.h -------------------------------------------------------------------------------- /src/common/dictionary.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/common/dictionary.bin -------------------------------------------------------------------------------- /src/common/dictionary.bin.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/common/dictionary.bin.br -------------------------------------------------------------------------------- /src/common/dictionary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/common/dictionary.c -------------------------------------------------------------------------------- /src/common/dictionary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/common/dictionary.h -------------------------------------------------------------------------------- /src/common/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/common/platform.h -------------------------------------------------------------------------------- /src/common/transform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/common/transform.c -------------------------------------------------------------------------------- /src/common/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/common/transform.h -------------------------------------------------------------------------------- /src/common/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/common/version.h -------------------------------------------------------------------------------- /src/dec/bit_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/dec/bit_reader.c -------------------------------------------------------------------------------- /src/dec/bit_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/dec/bit_reader.h -------------------------------------------------------------------------------- /src/dec/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/dec/decode.c -------------------------------------------------------------------------------- /src/dec/huffman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/dec/huffman.c -------------------------------------------------------------------------------- /src/dec/huffman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/dec/huffman.h -------------------------------------------------------------------------------- /src/dec/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/dec/prefix.h -------------------------------------------------------------------------------- /src/dec/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/dec/state.c -------------------------------------------------------------------------------- /src/dec/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/dec/state.h -------------------------------------------------------------------------------- /src/enc/backward_references.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/backward_references.c -------------------------------------------------------------------------------- /src/enc/backward_references.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/backward_references.h -------------------------------------------------------------------------------- /src/enc/backward_references_hq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/backward_references_hq.c -------------------------------------------------------------------------------- /src/enc/backward_references_hq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/backward_references_hq.h -------------------------------------------------------------------------------- /src/enc/backward_references_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/backward_references_inc.h -------------------------------------------------------------------------------- /src/enc/bit_cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/bit_cost.c -------------------------------------------------------------------------------- /src/enc/bit_cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/bit_cost.h -------------------------------------------------------------------------------- /src/enc/bit_cost_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/bit_cost_inc.h -------------------------------------------------------------------------------- /src/enc/block_encoder_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/block_encoder_inc.h -------------------------------------------------------------------------------- /src/enc/block_splitter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/block_splitter.c -------------------------------------------------------------------------------- /src/enc/block_splitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/block_splitter.h -------------------------------------------------------------------------------- /src/enc/block_splitter_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/block_splitter_inc.h -------------------------------------------------------------------------------- /src/enc/brotli_bit_stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/brotli_bit_stream.c -------------------------------------------------------------------------------- /src/enc/brotli_bit_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/brotli_bit_stream.h -------------------------------------------------------------------------------- /src/enc/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/cluster.c -------------------------------------------------------------------------------- /src/enc/cluster.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/cluster.h -------------------------------------------------------------------------------- /src/enc/cluster_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/cluster_inc.h -------------------------------------------------------------------------------- /src/enc/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/command.h -------------------------------------------------------------------------------- /src/enc/compress_fragment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/compress_fragment.c -------------------------------------------------------------------------------- /src/enc/compress_fragment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/compress_fragment.h -------------------------------------------------------------------------------- /src/enc/compress_fragment_two_pass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/compress_fragment_two_pass.c -------------------------------------------------------------------------------- /src/enc/compress_fragment_two_pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/compress_fragment_two_pass.h -------------------------------------------------------------------------------- /src/enc/dictionary_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/dictionary_hash.c -------------------------------------------------------------------------------- /src/enc/dictionary_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/dictionary_hash.h -------------------------------------------------------------------------------- /src/enc/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/encode.c -------------------------------------------------------------------------------- /src/enc/encoder_dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/encoder_dict.c -------------------------------------------------------------------------------- /src/enc/encoder_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/encoder_dict.h -------------------------------------------------------------------------------- /src/enc/entropy_encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/entropy_encode.c -------------------------------------------------------------------------------- /src/enc/entropy_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/entropy_encode.h -------------------------------------------------------------------------------- /src/enc/entropy_encode_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/entropy_encode_static.h -------------------------------------------------------------------------------- /src/enc/fast_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/fast_log.h -------------------------------------------------------------------------------- /src/enc/find_match_length.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/find_match_length.h -------------------------------------------------------------------------------- /src/enc/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/hash.h -------------------------------------------------------------------------------- /src/enc/hash_composite_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/hash_composite_inc.h -------------------------------------------------------------------------------- /src/enc/hash_forgetful_chain_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/hash_forgetful_chain_inc.h -------------------------------------------------------------------------------- /src/enc/hash_longest_match64_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/hash_longest_match64_inc.h -------------------------------------------------------------------------------- /src/enc/hash_longest_match_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/hash_longest_match_inc.h -------------------------------------------------------------------------------- /src/enc/hash_longest_match_quickly_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/hash_longest_match_quickly_inc.h -------------------------------------------------------------------------------- /src/enc/hash_rolling_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/hash_rolling_inc.h -------------------------------------------------------------------------------- /src/enc/hash_to_binary_tree_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/hash_to_binary_tree_inc.h -------------------------------------------------------------------------------- /src/enc/histogram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/histogram.c -------------------------------------------------------------------------------- /src/enc/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/histogram.h -------------------------------------------------------------------------------- /src/enc/histogram_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/histogram_inc.h -------------------------------------------------------------------------------- /src/enc/literal_cost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/literal_cost.c -------------------------------------------------------------------------------- /src/enc/literal_cost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/literal_cost.h -------------------------------------------------------------------------------- /src/enc/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/memory.c -------------------------------------------------------------------------------- /src/enc/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/memory.h -------------------------------------------------------------------------------- /src/enc/metablock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/metablock.c -------------------------------------------------------------------------------- /src/enc/metablock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/metablock.h -------------------------------------------------------------------------------- /src/enc/metablock_inc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/metablock_inc.h -------------------------------------------------------------------------------- /src/enc/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/params.h -------------------------------------------------------------------------------- /src/enc/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/prefix.h -------------------------------------------------------------------------------- /src/enc/quality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/quality.h -------------------------------------------------------------------------------- /src/enc/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/ringbuffer.h -------------------------------------------------------------------------------- /src/enc/static_dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/static_dict.c -------------------------------------------------------------------------------- /src/enc/static_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/static_dict.h -------------------------------------------------------------------------------- /src/enc/static_dict_lut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/static_dict_lut.h -------------------------------------------------------------------------------- /src/enc/utf8_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/utf8_util.c -------------------------------------------------------------------------------- /src/enc/utf8_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/utf8_util.h -------------------------------------------------------------------------------- /src/enc/write_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/enc/write_bits.h -------------------------------------------------------------------------------- /src/fuzz/decode_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/fuzz/decode_fuzzer.c -------------------------------------------------------------------------------- /src/fuzz/run_decode_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/fuzz/run_decode_fuzzer.c -------------------------------------------------------------------------------- /src/fuzz/test_fuzzer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/fuzz/test_fuzzer.sh -------------------------------------------------------------------------------- /src/tools/brotli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/tools/brotli.c -------------------------------------------------------------------------------- /src/tools/brotli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/src/tools/brotli.md -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/data/1000-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/1000-1.bin -------------------------------------------------------------------------------- /tests/data/1000-1.bin.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/1000-1.bin.br -------------------------------------------------------------------------------- /tests/data/1000-r.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/1000-r.bin -------------------------------------------------------------------------------- /tests/data/1000-r.bin.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/1000-r.bin.br -------------------------------------------------------------------------------- /tests/data/144.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/144.txt -------------------------------------------------------------------------------- /tests/data/144.txt.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/144.txt.br -------------------------------------------------------------------------------- /tests/data/144.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/144.txt.gz -------------------------------------------------------------------------------- /tests/data/2000-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/2000-1.bin -------------------------------------------------------------------------------- /tests/data/2000-1.bin.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/2000-1.bin.br -------------------------------------------------------------------------------- /tests/data/4000-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/4000-1.bin -------------------------------------------------------------------------------- /tests/data/4000-1.bin.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/4000-1.bin.br -------------------------------------------------------------------------------- /tests/data/500-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/500-1.bin -------------------------------------------------------------------------------- /tests/data/500-1.bin.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/500-1.bin.br -------------------------------------------------------------------------------- /tests/data/500-r.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/500-r.bin -------------------------------------------------------------------------------- /tests/data/500-r.bin.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/500-r.bin.br -------------------------------------------------------------------------------- /tests/data/6000-1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/6000-1.bin -------------------------------------------------------------------------------- /tests/data/6000-1.bin.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/6000-1.bin.br -------------------------------------------------------------------------------- /tests/data/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/Readme.md -------------------------------------------------------------------------------- /tests/data/sensors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/data/sensors.json -------------------------------------------------------------------------------- /tests/fs_partition.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/fs_partition.csv -------------------------------------------------------------------------------- /tests/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/platformio.ini -------------------------------------------------------------------------------- /tests/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/src/main.cpp -------------------------------------------------------------------------------- /tests/udp-receive/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/udp-receive/.gitignore -------------------------------------------------------------------------------- /tests/udp-receive/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/udp-receive/platformio.ini -------------------------------------------------------------------------------- /tests/udp-receive/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinberlin/brotli/HEAD/tests/udp-receive/src/main.cpp --------------------------------------------------------------------------------