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

/illumos-gate/usr/src/common/lzma/
H A DLzmaDec.c34 #define TREE_GET_BIT(probs, i) { GET_BIT((probs + i), i); }
35 #define TREE_DECODE(probs, limit, i) \
36 { i = 1; do { TREE_GET_BIT(probs, i); } while (i < limit); i -= limit; }
41 #define TREE_6_DECODE(probs, i) TREE_DECODE(probs, (1 << 6), i)
43 #define TREE_6_DECODE(probs, i) \
45 TREE_GET_BIT(probs, i); \
46 TREE_GET_BIT(probs, i); \
47 TREE_GET_BIT(probs,
150 CLzmaProb *probs = p->probs; local
511 CLzmaProb *probs = p->probs; local
730 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:__anon1987
67 #define LzmaDec_Construct(p) { (p)->dic = 0; (p)->probs = 0; }
H A DLzmaEnc.c595 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol) argument
600 RangeEnc_EncodeBit(p, probs + (symbol >> 8), (symbol >> 7) & 1);
606 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) argument
613 RangeEnc_EncodeBit(p, probs + (offs + (matchByte & offs) + (symbol >> 8)), (symbol >> 7) & 1);
656 static UInt32 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 symbol, UInt32 *ProbPrices) argument
662 price += GET_PRICEa(probs[symbol >> 8], (symbol >> 7) & 1);
669 static UInt32 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices) argument
677 price += GET_PRICEa(probs[offs + (matchByte & offs) + (symbol >> 8)], (symbol >> 7) & 1);
686 static void RcTree_Encode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
695 RangeEnc_EncodeBit(rc, probs
700 RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) argument
713 RcTree_GetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
725 RcTree_ReverseGetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *ProbPrices) argument
1032 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); local
1245 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); local
1803 CLzmaProb *probs; local
2001 CLzmaProb *probs = p->posSlotEncoder[i]; local
[all...]

Completed in 74 milliseconds