kNumMoveReducingBits  285 third_party/lzma_sdk/LzmaEnc.c   UInt32 ProbPrices[kBitModelTotal >> kNumMoveReducingBits];
kNumMoveReducingBits  603 third_party/lzma_sdk/LzmaEnc.c   for (i = (1 << kNumMoveReducingBits) / 2; i < kBitModelTotal; i += (1 << kNumMoveReducingBits))
kNumMoveReducingBits  619 third_party/lzma_sdk/LzmaEnc.c     ProbPrices[i >> kNumMoveReducingBits] = ((kNumBitModelTotalBits << kCyclesBits) - 15 - bitCount);
kNumMoveReducingBits  625 third_party/lzma_sdk/LzmaEnc.c   p->ProbPrices[((prob) ^ (((-(int)(symbol))) & (kBitModelTotal - 1))) >> kNumMoveReducingBits];
kNumMoveReducingBits  628 third_party/lzma_sdk/LzmaEnc.c   ProbPrices[((prob) ^ ((-((int)(symbol))) & (kBitModelTotal - 1))) >> kNumMoveReducingBits];
kNumMoveReducingBits  630 third_party/lzma_sdk/LzmaEnc.c #define GET_PRICE_0(prob) p->ProbPrices[(prob) >> kNumMoveReducingBits]
kNumMoveReducingBits  631 third_party/lzma_sdk/LzmaEnc.c #define GET_PRICE_1(prob) p->ProbPrices[((prob) ^ (kBitModelTotal - 1)) >> kNumMoveReducingBits]
kNumMoveReducingBits  633 third_party/lzma_sdk/LzmaEnc.c #define GET_PRICE_0a(prob) ProbPrices[(prob) >> kNumMoveReducingBits]
kNumMoveReducingBits  634 third_party/lzma_sdk/LzmaEnc.c #define GET_PRICE_1a(prob) ProbPrices[((prob) ^ (kBitModelTotal - 1)) >> kNumMoveReducingBits]