Home
last modified time | relevance | path

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

/external/brotli/java/org/brotli/dec/
DDecode.java616 private static int decodeContextMap(int contextMapSize, byte[] contextMap, State s) { in decodeContextMap() argument
621 Utils.fillBytesWithZeroes(contextMap, 0, contextMapSize); in decodeContextMap()
637 for (int i = 0; i < contextMapSize; ) { in decodeContextMap()
648 if (i >= contextMapSize) { in decodeContextMap()
662 inverseMoveToFrontTransform(contextMap, contextMapSize); in decodeContextMap()
/external/brotli/csharp/org/brotli/dec/
DDecode.cs349 …private static int DecodeContextMap(int contextMapSize, byte[] contextMap, Org.Brotli.Dec.BitReade… in DecodeContextMap() argument
355 Org.Brotli.Dec.Utils.FillWithZeroes(contextMap, 0, contextMapSize); in DecodeContextMap()
366 for (int i = 0; i < contextMapSize; ) in DecodeContextMap()
381 if (i >= contextMapSize) in DecodeContextMap()
399 InverseMoveToFrontTransform(contextMap, contextMapSize); in DecodeContextMap()
/external/brotli/js/
Ddecode.js557 function decodeContextMap(contextMapSize, contextMap, s) { argument
563 contextMap.fill(0, 0, contextMapSize);
580 for (var /** number */ i = 0; i < contextMapSize; ) {
599 if (i >= contextMapSize) {
616 inverseMoveToFrontTransform(contextMap, contextMapSize);