Searched refs:decodeBit (Results 1 – 2 of 2) sorted by relevance
/external/xz-java/src/org/tukaani/xz/lzma/ |
D | LZMADecoder.java | 55 if (rc.decodeBit(isMatch[state.get()], posState) == 0) { in decode() 58 int len = rc.decodeBit(isRep, state.get()) == 0 in decode() 102 if (rc.decodeBit(isRep0, state.get()) == 0) { in decodeRepMatch() 103 if (rc.decodeBit(isRep0Long[state.get()], posState) == 0) { in decodeRepMatch() 110 if (rc.decodeBit(isRep1, state.get()) == 0) { in decodeRepMatch() 113 if (rc.decodeBit(isRep2, state.get()) == 0) { in decodeRepMatch() 161 symbol = (symbol << 1) | rc.decodeBit(probs, symbol); in decode() 173 bit = rc.decodeBit(probs, offset + matchBit + symbol); in decode() 188 if (rc.decodeBit(choice, 0) == 0) in decode() 191 if (rc.decodeBit(choice, 1) == 0) in decode()
|
/external/xz-java/src/org/tukaani/xz/rangecoder/ |
D | RangeDecoder.java | 22 public int decodeBit(short[] probs, int index) throws IOException { in decodeBit() method in RangeDecoder 49 symbol = (symbol << 1) | decodeBit(probs, symbol); in decodeBitTree() 61 int bit = decodeBit(probs, symbol); in decodeReverseBitTree()
|