Searched refs:GET_BIT2 (Results 1 – 2 of 2) sorted by relevance
/external/u-boot/lib/lzma/ |
D | LzmaDec.c | 25 #define GET_BIT2(p, i, A0, A1) IF_BIT_0(p) \ macro 28 #define GET_BIT(p, i) GET_BIT2(p, i, ; , ;) 200 GET_BIT2(probLit, symbol, offs &= ~bit, offs &= bit) in LzmaDec_DecodeReal() 328 GET_BIT2(prob + i, i, ; , distance |= mask); in LzmaDec_DecodeReal() 366 GET_BIT2(prob + i, i, ; , distance |= 1); in LzmaDec_DecodeReal() 367 GET_BIT2(prob + i, i, ; , distance |= 2); in LzmaDec_DecodeReal() 368 GET_BIT2(prob + i, i, ; , distance |= 4); in LzmaDec_DecodeReal() 369 GET_BIT2(prob + i, i, ; , distance |= 8); in LzmaDec_DecodeReal()
|
/external/lzma/C/ |
D | LzmaDec.c | 25 #define GET_BIT2(p, i, A0, A1) IF_BIT_0(p) \ macro 29 #define TREE_GET_BIT(probs, i) { GET_BIT2(probs + i, i, ;, ;); } 63 GET_BIT2(probLit, symbol, offs ^= bit; , ;)
|