HomeSort by relevance Sort by last modified time
    Searched refs:BrotliDecoderState (Results 1 - 13 of 13) sorted by null

  /external/brotli/c/include/brotli/
decode.h 28 typedef struct BrotliDecoderStateStruct BrotliDecoderState;
155 BrotliDecoderState* state, BrotliDecoderParameter param, uint32_t value);
158 * Creates an instance of ::BrotliDecoderState and initializes it.
173 * @returns pointer to initialized ::BrotliDecoderState otherwise
175 BROTLI_DEC_API BrotliDecoderState* BrotliDecoderCreateInstance(
179 * Deinitializes and frees ::BrotliDecoderState instance.
183 BROTLI_DEC_API void BrotliDecoderDestroyInstance(BrotliDecoderState* state);
247 BrotliDecoderState* state, size_t* available_in, const uint8_t** next_in,
258 const BrotliDecoderState* state);
289 BrotliDecoderState* state, size_t* size)
    [all...]
  /external/bsdiff/
brotli_decompressor.h 26 BrotliDecoderState* brotli_decoder_state_;
  /external/brotli/c/dec/
state.h 235 #define BrotliDecoderState BrotliDecoderStateInternal
237 BROTLI_INTERNAL BROTLI_BOOL BrotliDecoderStateInit(BrotliDecoderState* s,
239 BROTLI_INTERNAL void BrotliDecoderStateCleanup(BrotliDecoderState* s);
240 BROTLI_INTERNAL void BrotliDecoderStateMetablockBegin(BrotliDecoderState* s);
242 BrotliDecoderState* s);
244 BrotliDecoderState* s, HuffmanTreeGroup* group, uint32_t alphabet_size,
decode.c 61 BrotliDecoderState* state, BrotliDecoderParameter p, uint32_t value) {
76 BrotliDecoderState* BrotliDecoderCreateInstance(
78 BrotliDecoderState* state = 0;
80 state = (BrotliDecoderState*)malloc(sizeof(BrotliDecoderState));
82 state = (BrotliDecoderState*)alloc_func(opaque, sizeof(BrotliDecoderState));
100 /* Deinitializes and frees BrotliDecoderState instance. */
101 void BrotliDecoderDestroyInstance(BrotliDecoderState* state) {
114 BrotliDecoderState* s, BrotliDecoderErrorCode e)
    [all...]
state.c 18 BROTLI_BOOL BrotliDecoderStateInit(BrotliDecoderState* s,
98 void BrotliDecoderStateMetablockBegin(BrotliDecoderState* s) {
128 void BrotliDecoderStateCleanupAfterMetablock(BrotliDecoderState* s) {
137 void BrotliDecoderStateCleanup(BrotliDecoderState* s) {
144 BROTLI_BOOL BrotliDecoderHuffmanTreeGroupInit(BrotliDecoderState* s,
  /external/brotli/c/fuzz/
decode_fuzzer.c 29 BrotliDecoderState* state = BrotliDecoderCreateInstance(0, 0, 0);
  /external/brotli/research/
brotli_decoder.c 20 BrotliDecoderState* decoder;
  /external/brotli/go/cbrotli/
reader.go 15 static BrotliDecoderResult DecompressStream(BrotliDecoderState* s,
53 state *C.BrotliDecoderState
  /external/brotli/java/org/brotli/wrapper/dec/
decoder_jni.cc 16 BrotliDecoderState* state;
  /external/brotli/python/
_brotli.cc 395 static BROTLI_BOOL decompress_stream(BrotliDecoderState* dec,
434 BrotliDecoderState* dec;
546 PyErr_SetString(BrotliError, "BrotliDecoderState is NULL while checking is_finished");
662 BrotliDecoderState* state = BrotliDecoderCreateInstance(0, 0, 0);
  /external/brotli/c/tools/
brotli.c 836 static BROTLI_BOOL DecompressFile(Context* context, BrotliDecoderState* s) {
871 BrotliDecoderState* s = BrotliDecoderCreateInstance(NULL, NULL, NULL);
    [all...]
  /external/curl/lib/
content_encoding.c 587 BrotliDecoderState *br; /* State structure for brotli. */
  /bootable/recovery/updater/
blockimg.cpp 350 BrotliDecoderState* brotli_decoder_state;
    [all...]

Completed in 339 milliseconds