Searched refs:probs (Results 1 - 2 of 2) sorted by relevance

/u-boot/lib/lzma/
H A DLzmaDec.c29 #define TREE_GET_BIT(probs, i) { GET_BIT((probs + i), i); }
30 #define TREE_DECODE(probs, limit, i) \
31 { i = 1; do { TREE_GET_BIT(probs, i); } while (i < limit); i -= limit; }
36 #define TREE_6_DECODE(probs, i) TREE_DECODE(probs, (1 << 6), i)
38 #define TREE_6_DECODE(probs, i) \
40 TREE_GET_BIT(probs, i); \
41 TREE_GET_BIT(probs, i); \
42 TREE_GET_BIT(probs,
135 CLzmaProb *probs = p->probs; local
507 CLzmaProb *probs = p->probs; local
726 CLzmaProb *probs = p->probs; local
[all...]
H A DLzmaDec.h11 but memory usage for CLzmaDec::probs will be doubled in that case */
49 CLzmaProb *probs; member in struct:__anon1233
67 #define LzmaDec_Construct(p) { (p)->dic = 0; (p)->probs = 0; }

Completed in 99 milliseconds