Searched refs:decodeContextMap (Results 1 – 2 of 2) sorted by relevance
/external/brotli/java/org/brotli/dec/ |
D | Decode.java | 436 private static int decodeContextMap(int contextMapSize, byte[] contextMap, State s) { in decodeContextMap() method in Decode 623 int numLiteralTrees = decodeContextMap(s.numLiteralBlockTypes << LITERAL_CONTEXT_BITS, in readMetablockHuffmanCodesAndContextMaps() 635 int numDistTrees = decodeContextMap(s.numDistanceBlockTypes << DISTANCE_CONTEXT_BITS, in readMetablockHuffmanCodesAndContextMaps()
|
/external/brotli/js/ |
D | decode.js | 429 function decodeContextMap(contextMapSize, contextMap, s) { function in BrotliDecodeClosure 662 …var /** !number */ numLiteralTrees = decodeContextMap(s.numLiteralBlockTypes << 6, s.contextMap, s… 671 …var /** !number */ numDistTrees = decodeContextMap(s.numDistanceBlockTypes << 2, s.distContextMap,…
|