Home
last modified time | relevance | path

Searched refs:maxRunLengthPrefix (Results 1 – 3 of 3) sorted by relevance

/external/brotli/java/org/brotli/dec/
DDecode.java447 int maxRunLengthPrefix = 0; in decodeContextMap() local
449 maxRunLengthPrefix = BitReader.readFewBits(s, 4) + 1; in decodeContextMap()
452 readHuffmanCode(numTrees + maxRunLengthPrefix, table, 0, s); in decodeContextMap()
460 } else if (code <= maxRunLengthPrefix) { in decodeContextMap()
472 contextMap[i] = (byte) (code - maxRunLengthPrefix); in decodeContextMap()
/external/brotli/csharp/org/brotli/dec/
DDecode.cs359 int maxRunLengthPrefix = 0; in DecodeContextMap()
362 maxRunLengthPrefix = Org.Brotli.Dec.BitReader.ReadBits(br, 4) + 1; in DecodeContextMap()
365 ReadHuffmanCode(numTrees + maxRunLengthPrefix, table, 0, br); in DecodeContextMap()
376 else if (code <= maxRunLengthPrefix) in DecodeContextMap()
393 contextMap[i] = unchecked((byte)(code - maxRunLengthPrefix)); in DecodeContextMap()
/external/brotli/js/
Ddecode.js443 var /** !number */ maxRunLengthPrefix = 0;
445 maxRunLengthPrefix = readFewBits(s, 4) + 1;
448 readHuffmanCode(numTrees + maxRunLengthPrefix, table, 0, s);
461 } else if (code <= maxRunLengthPrefix) {
476 contextMap[i] = (code - maxRunLengthPrefix);