Home
last modified time | relevance | path

Searched refs:decodeContextMap (Results 1 – 2 of 2) sorted by relevance

/external/brotli/java/org/brotli/dec/
DDecode.java616 private static int decodeContextMap(int contextMapSize, byte[] contextMap, State s) { in decodeContextMap() method in Decode
848 int numLiteralTrees = decodeContextMap(s.numLiteralBlockTypes << LITERAL_CONTEXT_BITS, in readMetablockHuffmanCodesAndContextMaps()
860 int numDistTrees = decodeContextMap(s.numDistanceBlockTypes << DISTANCE_CONTEXT_BITS, in readMetablockHuffmanCodesAndContextMaps()
/external/brotli/js/
Ddecode.js557 function decodeContextMap(contextMapSize, contextMap, s) { function in BrotliDecodeClosure
828 …var /** number */ numLiteralTrees = decodeContextMap(s.numLiteralBlockTypes << 6, s.contextMap, s);
837 …var /** number */ numDistTrees = decodeContextMap(s.numDistanceBlockTypes << 2, s.distContextMap, …