Home
last modified time | relevance | path

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

/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
DLZMAEncoderNormal.java126 int repBest = 0; in getNextSymbol() local
135 if (repLens[rep] > repLens[repBest]) in getNextSymbol()
136 repBest = rep; in getNextSymbol()
140 if (repLens[repBest] >= niceLen) { in getNextSymbol()
141 back = repBest; in getNextSymbol()
142 skip(repLens[repBest] - 1); in getNextSymbol()
143 return repLens[repBest]; in getNextSymbol()
169 && repLens[repBest] < MATCH_LEN_MIN) in getNextSymbol()
198 optEnd = Math.max(mainLen, repLens[repBest]); in getNextSymbol()