Home
last modified time | relevance | path

Searched defs: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); } argument
35 #define TREE_DECODE(probs, limit, i) \ argument
41 #define TREE_6_DECODE(probs, i) TREE_DECODE(probs, (1 << 6), i) argument
43 #define TREE_6_DECODE(probs, i) \ argument
63 #define TREE_DECODE_CHECK(probs, limit, i) \ argument
150 CLzmaProb *probs = p->probs; in LzmaDec_DecodeReal() local
511 CLzmaProb *probs = p->probs; in LzmaDec_TryDummy() local
730 CLzmaProb *probs = p->probs; in LzmaDec_InitStateReal() local
H A DLzmaEnc.c595 static void LitEnc_Encode(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol) in LitEnc_Encode()
606 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) in LitEnc_EncodeMatched()
656 static UInt32 LitEnc_GetPrice(const CLzmaProb *probs, UInt32 symbol, UInt32 *ProbPrices) in LitEnc_GetPrice()
669 static UInt32 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt3… in LitEnc_GetPriceMatched()
686 static void RcTree_Encode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) in RcTree_Encode()
700 static void RcTree_ReverseEncode(CRangeEnc *rc, CLzmaProb *probs, int numBitLevels, UInt32 symbol) in RcTree_ReverseEncode()
713 static UInt32 RcTree_GetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt32 *Prob… in RcTree_GetPrice()
725 static UInt32 RcTree_ReverseGetPrice(const CLzmaProb *probs, int numBitLevels, UInt32 symbol, UInt3… in RcTree_ReverseGetPrice()
1032 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); in GetOptimum() local
1245 const CLzmaProb *probs = LIT_PROBS(position, *(data - 1)); in GetOptimum() local
[all …]
H A DLzmaDec.h49 CLzmaProb *probs; member