• Home
  • Raw
  • Download

Lines Matching refs:BrotliDecoderState

61     BrotliDecoderState* state, BrotliDecoderParameter p, uint32_t value) {  in BrotliDecoderSetParameter()
76 BrotliDecoderState* BrotliDecoderCreateInstance( in BrotliDecoderCreateInstance()
78 BrotliDecoderState* state = 0; in BrotliDecoderCreateInstance()
80 state = (BrotliDecoderState*)malloc(sizeof(BrotliDecoderState)); in BrotliDecoderCreateInstance()
82 state = (BrotliDecoderState*)alloc_func(opaque, sizeof(BrotliDecoderState)); in BrotliDecoderCreateInstance()
101 void BrotliDecoderDestroyInstance(BrotliDecoderState* state) { in BrotliDecoderDestroyInstance()
114 BrotliDecoderState* s, BrotliDecoderErrorCode e) { in SaveErrorCode()
133 static BrotliDecoderErrorCode DecodeWindowBits(BrotliDecoderState* s, in DecodeWindowBits()
181 BrotliDecoderState* s, BrotliBitReader* br, uint32_t* value) { in DecodeVarLenUint8()
225 BrotliDecoderState* s, BrotliBitReader* br) { in DecodeMetaBlockLength()
473 uint32_t alphabet_size, uint32_t max_symbol, BrotliDecoderState* s) { in ReadSimpleHuffmanSymbols()
589 uint32_t alphabet_size, BrotliDecoderState* s) { in ReadSymbolCodeLengths()
638 uint32_t alphabet_size, BrotliDecoderState* s) { in SafeReadSymbolCodeLengths()
685 static BrotliDecoderErrorCode ReadCodeLengthCodeLengths(BrotliDecoderState* s) { in ReadCodeLengthCodeLengths()
744 BrotliDecoderState* s) { in ReadHuffmanCode()
877 BrotliDecoderState* s, uint32_t* result, const HuffmanCode* table, in SafeReadBlockLength()
916 uint8_t* v, uint32_t v_len, BrotliDecoderState* state) { in InverseMoveToFrontTransform()
954 HuffmanTreeGroup* group, BrotliDecoderState* s) { in HuffmanTreeGroupDecode()
985 BrotliDecoderState* s) { in DecodeContextMap()
1111 int safe, BrotliDecoderState* s, int tree_type) { in DecodeBlockTypeAndLength()
1155 BrotliDecoderState* s) { in DetectTrivialLiteralBlockTypes()
1172 static BROTLI_INLINE void PrepareLiteralDecoding(BrotliDecoderState* s) { in PrepareLiteralDecoding()
1188 int safe, BrotliDecoderState* s) { in DecodeLiteralBlockSwitchInternal()
1196 static void BROTLI_NOINLINE DecodeLiteralBlockSwitch(BrotliDecoderState* s) { in DecodeLiteralBlockSwitch()
1201 BrotliDecoderState* s) { in SafeDecodeLiteralBlockSwitch()
1208 int safe, BrotliDecoderState* s) { in DecodeCommandBlockSwitchInternal()
1216 static void BROTLI_NOINLINE DecodeCommandBlockSwitch(BrotliDecoderState* s) { in DecodeCommandBlockSwitch()
1221 BrotliDecoderState* s) { in SafeDecodeCommandBlockSwitch()
1228 int safe, BrotliDecoderState* s) { in DecodeDistanceBlockSwitchInternal()
1238 static void BROTLI_NOINLINE DecodeDistanceBlockSwitch(BrotliDecoderState* s) { in DecodeDistanceBlockSwitch()
1243 BrotliDecoderState* s) { in SafeDecodeDistanceBlockSwitch()
1247 static size_t UnwrittenBytes(const BrotliDecoderState* s, BROTLI_BOOL wrap) { in UnwrittenBytes()
1258 BrotliDecoderState* s, size_t* available_out, uint8_t** next_out, in WriteRingBuffer()
1302 static void BROTLI_NOINLINE WrapRingBuffer(BrotliDecoderState* s) { in WrapRingBuffer()
1317 BrotliDecoderState* s) { in BrotliEnsureRingBuffer()
1347 BrotliDecoderState* s) { in CopyUncompressedBlockToOutput()
1403 BrotliDecoderState* s) { in BrotliCalculateRingBufferSize()
1442 static BrotliDecoderErrorCode ReadContextModes(BrotliDecoderState* s) { in ReadContextModes()
1459 static BROTLI_INLINE void TakeDistanceFromRingBuffer(BrotliDecoderState* s) { in TakeDistanceFromRingBuffer()
1502 int safe, BrotliDecoderState* s, BrotliBitReader* br) { in ReadDistanceInternal()
1560 BrotliDecoderState* s, BrotliBitReader* br) { in ReadDistance()
1565 BrotliDecoderState* s, BrotliBitReader* br) { in SafeReadDistance()
1570 int safe, BrotliDecoderState* s, BrotliBitReader* br, int* insert_length) { in ReadCommandInternal()
1608 BrotliDecoderState* s, BrotliBitReader* br, int* insert_length) { in ReadCommand()
1613 BrotliDecoderState* s, BrotliBitReader* br, int* insert_length) { in SafeReadCommand()
1638 int safe, BrotliDecoderState* s) { in ProcessCommandsInternal()
1929 BrotliDecoderState* s) { in ProcessCommands()
1934 BrotliDecoderState* s) { in SafeProcessCommands()
1956 BrotliDecoderState s; in BrotliDecoderDecompress()
1988 BrotliDecoderState* s, size_t* available_in, const uint8_t** next_in, in BrotliDecoderDecompressStream()
2440 BROTLI_BOOL BrotliDecoderHasMoreOutput(const BrotliDecoderState* s) { in BrotliDecoderHasMoreOutput()
2449 const uint8_t* BrotliDecoderTakeOutput(BrotliDecoderState* s, size_t* size) { in BrotliDecoderTakeOutput()
2474 BROTLI_BOOL BrotliDecoderIsUsed(const BrotliDecoderState* s) { in BrotliDecoderIsUsed()
2479 BROTLI_BOOL BrotliDecoderIsFinished(const BrotliDecoderState* s) { in BrotliDecoderIsFinished()
2484 BrotliDecoderErrorCode BrotliDecoderGetErrorCode(const BrotliDecoderState* s) { in BrotliDecoderGetErrorCode()