Searched refs:probs (Results 1 – 2 of 2) sorted by relevance
| /openbmc/u-boot/lib/lzma/ |
| H A D | LzmaDec.c | 30 #define TREE_GET_BIT(probs, i) { GET_BIT((probs + i), i); } argument 31 #define TREE_DECODE(probs, limit, i) \ argument 32 { i = 1; do { TREE_GET_BIT(probs, i); } while (i < limit); i -= limit; } 37 #define TREE_6_DECODE(probs, i) TREE_DECODE(probs, (1 << 6), i) argument 39 #define TREE_6_DECODE(probs, i) \ argument 41 TREE_GET_BIT(probs, i); \ 42 TREE_GET_BIT(probs, i); \ 43 TREE_GET_BIT(probs, i); \ 44 TREE_GET_BIT(probs, i); \ 45 TREE_GET_BIT(probs, i); \ [all …]
|
| H A D | LzmaDec.h | 49 CLzmaProb *probs; member 67 #define LzmaDec_Construct(p) { (p)->dic = 0; (p)->probs = 0; }
|