Searched refs:ReadSymbol (Results 1 – 3 of 3) sorted by relevance
/external/brotli/csharp/org/brotli/dec/ |
D | Decode.cs | 115 private static int ReadSymbol(int[] table, int offset, Org.Brotli.Dec.BitReader br) in ReadSymbol() method in Org.Brotli.Dec.Decode 136 int code = ReadSymbol(table, offset, br); in ReadBlockLength() 370 int code = ReadSymbol(table, 0, br); in DecodeContextMap() 410 …int blockType = ReadSymbol(state.blockTypeTrees, treeType * Org.Brotli.Dec.Huffman.HuffmanMaxTable… in DecodeBlockTypeAndLength() 714 int cmdCode = ReadSymbol(state.hGroup1.codes, state.treeCommandOffset, br); in Decompress() 745 … ringBuffer[state.pos] = unchecked((byte)ReadSymbol(state.hGroup0.codes, state.literalTree, br)); in Decompress() 772 prevByte1 = ReadSymbol(state.hGroup0.codes, state.hGroup0.trees[literalTreeIndex], br); in Decompress() 804 …state.distanceCode = ReadSymbol(state.hGroup2.codes, state.hGroup2.trees[state.distContextMap[stat… in Decompress()
|
/external/webp/src/dec/ |
D | vp8l_dec.c | 183 static WEBP_INLINE int ReadSymbol(const HuffmanCode* table, in ReadSymbol() function 1035 code = ReadSymbol(htree_group->htrees[GREEN], br); in DecodeAlphaData() 1051 const int dist_symbol = ReadSymbol(htree_group->htrees[DIST], br); in DecodeAlphaData() 1159 code = ReadSymbol(htree_group->htrees[GREEN], br); in DecodeImageData() 1167 red = ReadSymbol(htree_group->htrees[RED], br); in DecodeImageData() 1169 blue = ReadSymbol(htree_group->htrees[BLUE], br); in DecodeImageData() 1170 alpha = ReadSymbol(htree_group->htrees[ALPHA], br); in DecodeImageData() 1195 const int dist_symbol = ReadSymbol(htree_group->htrees[DIST], br); in DecodeImageData()
|
/external/brotli/c/dec/ |
D | decode.c | 365 static BROTLI_INLINE uint32_t ReadSymbol(const HuffmanCode* table, in ReadSymbol() function 869 code = ReadSymbol(table, br); in ReadBlockLength() 1126 block_type = ReadSymbol(type_tree, br); in DecodeBlockTypeAndLength() 1507 s->distance_code = (int)ReadSymbol(distance_tree, br); in ReadDistanceInternal() 1577 cmd_code = ReadSymbol(s->htree_command, br); in ReadCommandInternal() 1747 p1 = (uint8_t)ReadSymbol(hc, br); in ProcessCommandsInternal()
|