sbacGetEntropyBits  872 source/common/dct.cpp             X265_CHECK(sbacGetEntropyBits(mstate, sig) == (stateBits & 0xFFFFFF), "entropyBits check failure\n");
sbacGetEntropyBits  951 source/common/dct.cpp             sum += sbacGetEntropyBits(mstate, symbol1);
sbacGetEntropyBits  980 source/common/dct.cpp             sum += sbacGetEntropyBits(mstate, firstC2Flag);
sbacGetEntropyBits 2227 source/encoder/entropy.cpp         estBitsSbac.blockCbpBits[ctxInc][0] = sbacGetEntropyBits(ctx[ctxInc], 0);
sbacGetEntropyBits 2228 source/encoder/entropy.cpp         estBitsSbac.blockCbpBits[ctxInc][1] = sbacGetEntropyBits(ctx[ctxInc], 1);
sbacGetEntropyBits 2233 source/encoder/entropy.cpp     estBitsSbac.blockRootCbpBits[0] = sbacGetEntropyBits(ctx[0], 0);
sbacGetEntropyBits 2234 source/encoder/entropy.cpp     estBitsSbac.blockRootCbpBits[1] = sbacGetEntropyBits(ctx[0], 1);
sbacGetEntropyBits 2244 source/encoder/entropy.cpp             estBitsSbac.significantCoeffGroupBits[ctxIdx][bin] = sbacGetEntropyBits(m_contextState[OFF_SIG_CG_FLAG_CTX + ((bIsLuma ? 0 : NUM_SIG_CG_FLAG_CTX) + ctxIdx)], bin);
sbacGetEntropyBits 2265 source/encoder/entropy.cpp     estBitsSbac.significantBits[0][0] = sbacGetEntropyBits(m_contextState[ctxSigOffset], 0);
sbacGetEntropyBits 2266 source/encoder/entropy.cpp     estBitsSbac.significantBits[1][0] = sbacGetEntropyBits(m_contextState[ctxSigOffset], 1);
sbacGetEntropyBits 2270 source/encoder/entropy.cpp         estBitsSbac.significantBits[0][ctxIdx] = sbacGetEntropyBits(m_contextState[ctxSigOffset + ctxIdx], 0);
sbacGetEntropyBits 2271 source/encoder/entropy.cpp         estBitsSbac.significantBits[1][ctxIdx] = sbacGetEntropyBits(m_contextState[ctxSigOffset + ctxIdx], 1);
sbacGetEntropyBits 2286 source/encoder/entropy.cpp                     estBitsSbac.lastBits[i][ctx] = bits + sbacGetEntropyBits(ctxState[ctx], 0);
sbacGetEntropyBits 2287 source/encoder/entropy.cpp                     bits += sbacGetEntropyBits(ctxState[ctx], 1);
sbacGetEntropyBits 2305 source/encoder/entropy.cpp                     const int cost0 = sbacGetEntropyBits(ctxState[blkSizeOffset + ctx], 0);
sbacGetEntropyBits 2306 source/encoder/entropy.cpp                     const int cost1 = sbacGetEntropyBits(ctxState[blkSizeOffset + ctx], 1);
sbacGetEntropyBits 2312 source/encoder/entropy.cpp                 estBitsSbac.lastBits[i][maxGroupIdx] -= sbacGetEntropyBits(ctxState[blkSizeOffset + (maxGroupIdx >> 1)], 0);
sbacGetEntropyBits 2329 source/encoder/entropy.cpp                 estBitsSbac.lastBits[i][ctx] = bits + sbacGetEntropyBits(ctxState[ctxOffset], 0);
sbacGetEntropyBits 2330 source/encoder/entropy.cpp                 bits += sbacGetEntropyBits(ctxState[ctxOffset], 1);
sbacGetEntropyBits 2348 source/encoder/entropy.cpp             estBitsSbac.greaterOneBits[ctxIdx][0] = sbacGetEntropyBits(ctxOne[ctxIdx], 0);
sbacGetEntropyBits 2349 source/encoder/entropy.cpp             estBitsSbac.greaterOneBits[ctxIdx][1] = sbacGetEntropyBits(ctxOne[ctxIdx], 1);
sbacGetEntropyBits 2354 source/encoder/entropy.cpp             estBitsSbac.levelAbsBits[ctxIdx][0] = sbacGetEntropyBits(ctxAbs[ctxIdx], 0);
sbacGetEntropyBits 2355 source/encoder/entropy.cpp             estBitsSbac.levelAbsBits[ctxIdx][1] = sbacGetEntropyBits(ctxAbs[ctxIdx], 1);
sbacGetEntropyBits 2365 source/encoder/entropy.cpp             estBitsSbac.greaterOneBits[ctxIdx][0] = sbacGetEntropyBits(ctxOne[ctxIdx], 0);
sbacGetEntropyBits 2366 source/encoder/entropy.cpp             estBitsSbac.greaterOneBits[ctxIdx][1] = sbacGetEntropyBits(ctxOne[ctxIdx], 1);
sbacGetEntropyBits 2371 source/encoder/entropy.cpp             estBitsSbac.levelAbsBits[ctxIdx][0] = sbacGetEntropyBits(ctxAbs[ctxIdx], 0);
sbacGetEntropyBits 2372 source/encoder/entropy.cpp             estBitsSbac.levelAbsBits[ctxIdx][1] = sbacGetEntropyBits(ctxAbs[ctxIdx], 1);
sbacGetEntropyBits 2452 source/encoder/entropy.cpp         m_fracBits += sbacGetEntropyBits(mstate, binValue);
sbacGetEntropyBits  223 source/encoder/entropy.h         uint64_t fracBits = (m_fracBits & 32767) + sbacGetEntropyBits(ctxModel, binValue);