• Home
  • Raw
  • Download

Lines Matching refs:BrotliDecoderState

55 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()
585 uint32_t alphabet_size, BrotliDecoderState* s) { in SafeReadSymbolCodeLengths()
629 static BrotliDecoderErrorCode ReadCodeLengthCodeLengths(BrotliDecoderState* s) { in ReadCodeLengthCodeLengths()
688 BrotliDecoderState* s) { in ReadHuffmanCode()
818 BrotliDecoderState* s, uint32_t* result, const HuffmanCode* table, in SafeReadBlockLength()
858 uint8_t* v, uint32_t v_len, BrotliDecoderState* state) { in InverseMoveToFrontTransform()
896 HuffmanTreeGroup* group, BrotliDecoderState* s) { in HuffmanTreeGroupDecode()
927 BrotliDecoderState* s) { in DecodeContextMap()
1045 int safe, BrotliDecoderState* s, int tree_type) { in DecodeBlockTypeAndLength()
1086 BrotliDecoderState* s) { in DetectTrivialLiteralBlockTypes()
1103 static BROTLI_INLINE void PrepareLiteralDecoding(BrotliDecoderState* s) { in PrepareLiteralDecoding()
1120 int safe, BrotliDecoderState* s) { in DecodeLiteralBlockSwitchInternal()
1128 static void BROTLI_NOINLINE DecodeLiteralBlockSwitch(BrotliDecoderState* s) { in DecodeLiteralBlockSwitch()
1133 BrotliDecoderState* s) { in SafeDecodeLiteralBlockSwitch()
1140 int safe, BrotliDecoderState* s) { in DecodeCommandBlockSwitchInternal()
1148 static void BROTLI_NOINLINE DecodeCommandBlockSwitch(BrotliDecoderState* s) { in DecodeCommandBlockSwitch()
1152 BrotliDecoderState* s) { in SafeDecodeCommandBlockSwitch()
1159 int safe, BrotliDecoderState* s) { in DecodeDistanceBlockSwitchInternal()
1169 static void BROTLI_NOINLINE DecodeDistanceBlockSwitch(BrotliDecoderState* s) { in DecodeDistanceBlockSwitch()
1174 BrotliDecoderState* s) { in SafeDecodeDistanceBlockSwitch()
1178 static size_t UnwrittenBytes(const BrotliDecoderState* s, BROTLI_BOOL wrap) { in UnwrittenBytes()
1190 BrotliDecoderState* s, size_t* available_out, uint8_t** next_out, in WriteRingBuffer()
1232 static void BROTLI_NOINLINE WrapRingBuffer(BrotliDecoderState* s) { in WrapRingBuffer()
1250 BrotliDecoderState* s) { in BrotliEnsureRingBuffer()
1290 BrotliDecoderState* s) { in CopyUncompressedBlockToOutput()
1346 BrotliDecoderState* s) { in BrotliCalculateRingBufferSize()
1381 static BrotliDecoderErrorCode ReadContextModes(BrotliDecoderState* s) { in ReadContextModes()
1398 static BROTLI_INLINE void TakeDistanceFromRingBuffer(BrotliDecoderState* s) { in TakeDistanceFromRingBuffer()
1441 int safe, BrotliDecoderState* s, BrotliBitReader* br) { in ReadDistanceInternal()
1499 BrotliDecoderState* s, BrotliBitReader* br) { in ReadDistance()
1504 BrotliDecoderState* s, BrotliBitReader* br) { in SafeReadDistance()
1509 int safe, BrotliDecoderState* s, BrotliBitReader* br, int* insert_length) { in ReadCommandInternal()
1547 BrotliDecoderState* s, BrotliBitReader* br, int* insert_length) { in ReadCommand()
1552 BrotliDecoderState* s, BrotliBitReader* br, int* insert_length) { in SafeReadCommand()
1577 int safe, BrotliDecoderState* s) { in ProcessCommandsInternal()
1855 BrotliDecoderState* s) { in ProcessCommands()
1860 BrotliDecoderState* s) { in SafeProcessCommands()
1867 BrotliDecoderState s; in BrotliDecoderDecompress()
1898 BrotliDecoderState* s, size_t* available_in, const uint8_t** next_in, in BrotliDecoderDecompressStream()
2298 BrotliDecoderState* s, size_t size, const uint8_t* dict) { in BrotliDecoderSetCustomDictionary()
2306 BROTLI_BOOL BrotliDecoderHasMoreOutput(const BrotliDecoderState* s) { in BrotliDecoderHasMoreOutput()
2311 const uint8_t* BrotliDecoderTakeOutput(BrotliDecoderState* s, size_t* size) { in BrotliDecoderTakeOutput()
2333 BROTLI_BOOL BrotliDecoderIsUsed(const BrotliDecoderState* s) { in BrotliDecoderIsUsed()
2338 BROTLI_BOOL BrotliDecoderIsFinished(const BrotliDecoderState* s) { in BrotliDecoderIsFinished()
2343 BrotliDecoderErrorCode BrotliDecoderGetErrorCode(const BrotliDecoderState* s) { in BrotliDecoderGetErrorCode()