Home
last modified time | relevance | path

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

/external/xz-java/src/org/tukaani/xz/rangecoder/
DRangeDecoder.java33 prob + ((BIT_MODEL_TOTAL - prob) >>> MOVE_BITS)); in decodeBit()
38 probs[index] = (short)(prob - (prob >>> MOVE_BITS)); in decodeBit()
DRangeEncoder.java108 prob + ((BIT_MODEL_TOTAL - prob) >>> MOVE_BITS)); in encodeBit()
112 probs[index] = (short)(prob - (prob >>> MOVE_BITS)); in encodeBit()
DRangeCoder.java21 static final int MOVE_BITS = 5; field in RangeCoder