Home
last modified time | relevance | path

Searched refs:BrotliDecoderState (Results 1 – 8 of 8) sorted by relevance

/external/brotli/include/brotli/
Ddecode.h28 typedef struct BrotliDecoderStateStruct BrotliDecoderState; typedef
145 BROTLI_DEC_API BrotliDecoderState* BrotliDecoderCreateInstance(
153 BROTLI_DEC_API void BrotliDecoderDestroyInstance(BrotliDecoderState* state);
217 BrotliDecoderState* state, size_t* available_in, const uint8_t** next_in,
242 BrotliDecoderState* state, size_t size,
253 const BrotliDecoderState* state);
284 BrotliDecoderState* state, size_t* size);
296 BROTLI_DEC_API BROTLI_BOOL BrotliDecoderIsUsed(const BrotliDecoderState* state);
306 BROTLI_BOOL BrotliDecoderIsFinished(const BrotliDecoderState* state);
320 const BrotliDecoderState* state);
/external/brotli/dec/
Dstate.h232 #define BrotliDecoderState BrotliDecoderStateInternal macro
234 BROTLI_INTERNAL void BrotliDecoderStateInit(BrotliDecoderState* s);
236 BrotliDecoderState* s, brotli_alloc_func alloc_func,
238 BROTLI_INTERNAL void BrotliDecoderStateCleanup(BrotliDecoderState* s);
239 BROTLI_INTERNAL void BrotliDecoderStateMetablockBegin(BrotliDecoderState* s);
241 BrotliDecoderState* s);
243 BrotliDecoderState* s, HuffmanTreeGroup* group, uint32_t alphabet_size,
Ddecode.c55 BrotliDecoderState* BrotliDecoderCreateInstance( in BrotliDecoderCreateInstance()
57 BrotliDecoderState* state = 0; in BrotliDecoderCreateInstance()
59 state = (BrotliDecoderState*)malloc(sizeof(BrotliDecoderState)); in BrotliDecoderCreateInstance()
61 state = (BrotliDecoderState*)alloc_func(opaque, sizeof(BrotliDecoderState)); in BrotliDecoderCreateInstance()
74 void BrotliDecoderDestroyInstance(BrotliDecoderState* state) { in BrotliDecoderDestroyInstance()
87 BrotliDecoderState* s, BrotliDecoderErrorCode e) { in SaveErrorCode()
132 BrotliDecoderState* s, BrotliBitReader* br, uint32_t* value) { in DecodeVarLenUint8()
176 BrotliDecoderState* s, BrotliBitReader* br) { in DecodeMetaBlockLength()
420 uint32_t alphabet_size, BrotliDecoderState* s) { in ReadSimpleHuffmanSymbols()
537 uint32_t alphabet_size, BrotliDecoderState* s) { in ReadSymbolCodeLengths()
[all …]
Dstate.c28 void BrotliDecoderStateInit(BrotliDecoderState* s) { in BrotliDecoderStateInit()
32 void BrotliDecoderStateInitWithCustomAllocators(BrotliDecoderState* s, in BrotliDecoderStateInitWithCustomAllocators()
105 void BrotliDecoderStateMetablockBegin(BrotliDecoderState* s) { in BrotliDecoderStateMetablockBegin()
136 void BrotliDecoderStateCleanupAfterMetablock(BrotliDecoderState* s) { in BrotliDecoderStateCleanupAfterMetablock()
145 void BrotliDecoderStateCleanup(BrotliDecoderState* s) { in BrotliDecoderStateCleanup()
152 BROTLI_BOOL BrotliDecoderHuffmanTreeGroupInit(BrotliDecoderState* s, in BrotliDecoderHuffmanTreeGroupInit()
/external/brotli/fuzz/
Ddecode_fuzzer.cc24 BrotliDecoderState* state = BrotliDecoderCreateInstance(0, 0, 0); in LLVMFuzzerTestOneInput()
/external/brotli/go/cbrotli/internal/
Ddecoder.go62 state *C.BrotliDecoderState
/external/brotli/python/
D_brotli.cc444 BrotliDecoderState* state = BrotliDecoderCreateInstance(0, 0, 0); in brotli_decompress()
/external/brotli/tools/
Dbro.c325 BrotliDecoderState* s = BrotliDecoderCreateInstance(NULL, NULL, NULL); in Decompress()