Home
last modified time | relevance | path

Searched refs:contextMode (Results 1 – 4 of 4) sorted by relevance

/external/brotli/research/
Dbrotlidump.py1813 self.contextMode = ContextModeKeeper(self.literalContextModes[0])
1843 cm = self.contextMode.getIndex()
1848 self.contextMode.add(char)
1891 self.contextMode.add(self.output[-2])
1892 self.contextMode.add(self.output[-1])
/external/brotli/csharp/org/brotli/dec/
DDecode.cs439 int contextMode = state.contextModes[literalBlockType]; in DecodeLiteralBlockSwitch()
440 state.contextLookupOffset1 = Org.Brotli.Dec.Context.LookupOffsets[contextMode]; in DecodeLiteralBlockSwitch()
441 state.contextLookupOffset2 = Org.Brotli.Dec.Context.LookupOffsets[contextMode + 1]; in DecodeLiteralBlockSwitch()
/external/brotli/java/org/brotli/dec/
DDecode.java511 int contextMode = s.contextModes[literalBlockType]; in decodeLiteralBlockSwitch() local
512 s.contextLookupOffset1 = contextMode << 9; in decodeLiteralBlockSwitch()
/external/brotli/js/
Ddecode.js528 var /** !number */ contextMode = s.contextModes[literalBlockType];
529 s.contextLookupOffset1 = contextMode << 9;