Searched refs:contextMapSize (Results 1 – 3 of 3) 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() argument 441 Utils.fillBytesWithZeroes(contextMap, 0, contextMapSize); in decodeContextMap() 453 for (int i = 0; i < contextMapSize; ) { in decodeContextMap() 464 if (i >= contextMapSize) { in decodeContextMap() 478 inverseMoveToFrontTransform(contextMap, contextMapSize); in decodeContextMap()
|
/external/brotli/csharp/org/brotli/dec/ |
D | Decode.cs | 349 …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/ |
D | decode.js | 429 function decodeContextMap(contextMapSize, contextMap, s) { argument 435 contextMap.fill(0, 0, contextMapSize); 449 for (var /** !number */ i = 0; i < contextMapSize; ) { 468 if (i >= contextMapSize) { 485 inverseMoveToFrontTransform(contextMap, contextMapSize);
|