Home
last modified time | relevance | path

Searched refs:brotli (Results 1 – 25 of 136) sorted by relevance

123456

/external/skia/third_party/brotli/
DBUILD.gn8 third_party("brotli") {
9 public_include_dirs = [ "../externals/brotli/c/include" ]
11 # The only consumer of brotli is freetype and it only needs to decode brotli.
13 "../externals/brotli/c/common/constants.c",
14 "../externals/brotli/c/common/context.c",
15 "../externals/brotli/c/common/dictionary.c",
16 "../externals/brotli/c/common/platform.c",
17 "../externals/brotli/c/common/transform.c",
18 "../externals/brotli/c/dec/bit_reader.c",
19 "../externals/brotli/c/dec/decode.c",
[all …]
/external/brotli/java/org/brotli/integration/
DBUILD8 "//org/brotli/wrapper/common:__pkg__",
9 "//org/brotli/wrapper/dec:__pkg__",
10 "//org/brotli/wrapper/enc:__pkg__",
18 "//org/brotli/wrapper/dec:__pkg__",
19 "//org/brotli/wrapper/enc:__pkg__",
28 "//org/brotli/dec",
34 main_class = "org.brotli.integration.BundleChecker",
40 args = ["org/brotli/integration/test_data.zip"],
42 main_class = "org.brotli.integration.BundleChecker",
51 "org/brotli/integration/fuzz_data.zip",
[all …]
/external/brotli/
DREADME.md1 <p align="center"><img src="https://brotli.org/brotli.svg" alt="Brotli" width="64"></p>
5 Please consider updating brotli to version 1.0.9 (latest).
22 https://groups.google.com/forum/#!forum/brotli
24 …I Build Status](https://travis-ci.org/google/brotli.svg?branch=master)](https://travis-ci.org/goog…
25 …om/api/projects/status/github/google/brotli?branch=master&svg=true)](https://ci.appveyor.com/proje…
26 …-logs.storage.googleapis.com/badges/brotli.svg)](https://oss-fuzz-build-logs.storage.googleapis.co…
32 You can download and install brotli using the [vcpkg](https://github.com/Microsoft/vcpkg/) dependen…
38 vcpkg install brotli
40 The brotli port in vcpkg is kept up to date by Microsoft team members and community contributors. I…
47 The basic commands to build, test and install brotli are:
[all …]
DAndroid.bp93 name: "brotli",
96 srcs: ["c/tools/brotli.c"],
106 // Support for brotli in java code.
110 name: "brotli-java",
119 // directly in brotli-fuzzer when a corpus_zip option is available.
121 name: "brotli-fuzzer-corpus",
122 srcs: ["java/org/brotli/integration/fuzz_data.zip"],
189 name: "brotli-fuzzer",
192 corpus: [":brotli-fuzzer-corpus"],
DMETADATA1 name: "brotli"
6 value: "https://github.com/google/brotli"
10 value: "https://github.com/google/brotli.git"
DMANIFEST.in8 include c/include/brotli/*.h
13 include python/brotli.py
17 include c/tools/brotli.c
/external/brotli/java/org/brotli/wrapper/enc/
DBUILD30 "//org/brotli/integration:brotli_jni_test_base",
31 "//org/brotli/integration:bundle_helper",
32 "//org/brotli/wrapper/dec",
39 srcs = ["//org/brotli/integration:test_corpus"],
54 test_class = "org.brotli.wrapper.enc.BrotliEncoderChannelTest",
70 test_class = "org.brotli.wrapper.enc.BrotliOutputStreamTest",
86 test_class = "org.brotli.wrapper.enc.EncoderTest",
DEncoderTest.java1 package org.brotli.wrapper.enc;
5 import org.brotli.integration.BrotliJniTestBase;
6 import org.brotli.integration.BundleHelper;
7 import org.brotli.wrapper.dec.BrotliInputStream;
DEmptyInputTest.java7 package org.brotli.wrapper.enc;
11 import org.brotli.integration.BrotliJniTestBase;
12 import org.brotli.wrapper.dec.Decoder;
DBrotliOutputStreamTest.java1 package org.brotli.wrapper.enc;
5 import org.brotli.integration.BrotliJniTestBase;
6 import org.brotli.integration.BundleHelper;
7 import org.brotli.wrapper.dec.BrotliInputStream;
/external/brotli/python/tests/
Ddecompressor_test.py10 import brotli
22 self.decompressor = brotli.Decompressor()
47 with self.assertRaises(brotli.error):
48 self.decompressor.process(brotli.compress(b'a') + b'a')
51 self.decompressor.process(brotli.compress(b'a'))
52 with self.assertRaises(brotli.error):
Ddecompress_test.py9 import brotli
28 out_file.write(brotli.decompress(in_file.read()))
35 with self.assertRaises(brotli.error):
36 brotli.decompress(brotli.compress(b'a') + b'a')
Dcompressor_test.py10 import brotli
30 out_file.write(brotli.decompress(in_file.read()))
72 self.compressor = brotli.Compressor(quality=1)
78 self.compressor = brotli.Compressor(quality=6)
84 self.compressor = brotli.Compressor(quality=9)
90 self.compressor = brotli.Compressor(quality=11)
Dcompress_test.py9 import brotli
24 out_file.write(brotli.decompress(in_file.read(), **kwargs))
31 out_file.write(brotli.compress(in_file.read(), **kwargs))
/external/brotli/c/tools/
Dbrotli.md1 brotli(1) -- brotli, unbrotli - compress or decompress files
7 `brotli` [*OPTION|FILE*]...
9 `unbrotli` is equivalent to `brotli --decompress`
13 `brotli` is a generic-purpose lossless compression algorithm that compresses
19 `brotli` command line syntax similar to `gzip (1)` and `zstd (1)`.
31 `brotli` has 3 operation modes:
40 is "`-`", `brotli` reads from standard input. All arguments after "`--`" are
97 `brotli` file format is defined in
100 `brotli` is open-sourced under the
103 Mailing list: https://groups.google.com/forum/#!forum/brotli
[all …]
/external/brotli/java/org/brotli/wrapper/dec/
DBUILD25 "//org/brotli/integration:brotli_jni_test_base",
26 "//org/brotli/integration:bundle_helper",
38 srcs = ["//org/brotli/integration:test_data"],
52 test_class = "org.brotli.wrapper.dec.BrotliDecoderChannelTest",
67 test_class = "org.brotli.wrapper.dec.BrotliInputStreamTest",
82 test_class = "org.brotli.wrapper.dec.DecoderTest",
/external/brotli/csharp/
Dtranspile.sh47 java -jar build/sharpen.jar ../java/org/brotli/dec/ -cp build/junit-4.12.jar @sharpen.cfg
57 rm org/brotli/dec/EnumTest.cs
60 CODE=$(<org/brotli/dec/BrotliInputStream.cs)
62 echo "${CODE//$PATTERN/$REPLACEMENT}" > org/brotli/dec/BrotliInputStream.cs
77 SOURCES=`find org/brotli -type file ! -path "*Test.cs"`
78 TESTS_SOURCES=`find org/brotli -type file -path "*Test.cs"`
/external/brotli/java/org/brotli/wrapper/common/
DBUILD30 "//org/brotli/dec",
31 "//org/brotli/integration:brotli_jni_test_base",
32 "//org/brotli/wrapper/dec",
46 test_class = "org.brotli.wrapper.common.SetZeroDictionaryTest",
59 test_class = "org.brotli.wrapper.common.SetRfcDictionaryTest",
DSetRfcDictionaryTest.java7 package org.brotli.wrapper.common;
13 import org.brotli.dec.Dictionary;
14 import org.brotli.integration.BrotliJniTestBase;
15 import org.brotli.wrapper.dec.BrotliInputStream;
DSetZeroDictionaryTest.java7 package org.brotli.wrapper.common;
12 import org.brotli.integration.BrotliJniTestBase;
13 import org.brotli.wrapper.dec.BrotliInputStream;
/external/brotli/java/
DBUILD57 "//org/brotli/wrapper/common:jni_src",
58 "//org/brotli/wrapper/dec:jni_src",
59 "//org/brotli/wrapper/enc:jni_src",
80 "//org/brotli/wrapper/common:jni_src",
81 "//org/brotli/wrapper/dec:jni_src",
82 "//org/brotli/wrapper/enc:jni_src",
/external/oss-fuzz/projects/woff2/
Dbuild.sh20 cat brotli/shared.mk | sed -e "s/-no-canonical-prefixes//" \
21 > brotli/shared.mk.temp
22 mv brotli/shared.mk.temp brotli/shared.mk
/external/brotli/python/
Dbro.py10 import brotli
14 'mode': brotli.MODE_GENERIC,
54 '--version', action='version', version=brotli.__version__)
143 data = brotli.decompress(data)
145 data = brotli.compress(
151 except brotli.error as e:
/external/oss-fuzz/projects/brunsli/
Dbuild.sh27 ./third_party/brotli/libbrotlidec-static.a \
28 ./third_party/brotli/libbrotlicommon-static.a
33 ./third_party/brotli/libbrotlidec-static.a \
34 ./third_party/brotli/libbrotlicommon-static.a
/external/brotli/scripts/
Dsources.lst5 c/tools/brotli.c
101 c/include/brotli/decode.h \
102 c/include/brotli/encode.h \
103 c/include/brotli/port.h \
104 c/include/brotli/types.h

123456