Home
last modified time | relevance | path

Searched refs:kBitModelTotal (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/common/lzma/
H A DLzmaEnc.c42 #define kBitModelTotal (1 << kNumBitModelTotalBits) macro
44 #define kProbInitValue (kBitModelTotal >> 1)
304 UInt32 ProbPrices[kBitModelTotal >> kNumMoveReducingBits];
579 ttt += (kBitModelTotal - ttt) >> kNumMoveBits; in RangeEnc_EncodeBit()
623 for (i = (1 << kNumMoveReducingBits) / 2; i < kBitModelTotal; i += (1 << kNumMoveReducingBits)) in LzmaEnc_InitPriceTables()
645 p->ProbPrices[((prob) ^ (((-(int)(symbol))) & (kBitModelTotal - 1))) >> kNumMoveReducingBits];
648 ProbPrices[((prob) ^ ((-((int)(symbol))) & (kBitModelTotal - 1))) >> kNumMoveReducingBits];
651 #define GET_PRICE_1(prob) p->ProbPrices[((prob) ^ (kBitModelTotal - 1)) >> kNumMoveReducingBits]
654 #define GET_PRICE_1a(prob) ProbPrices[((prob) ^ (kBitModelTotal - 1)) >> kNumMoveReducingBits]
H A DLzmaDec.c19 #define kBitModelTotal (1 << kNumBitModelTotalBits) macro
27 #define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits…
732 probs[i] = kBitModelTotal >> 1; in LzmaDec_InitStateReal()