Home
last modified time | relevance | path

Searched refs:_nbits (Results 1 – 4 of 4) sorted by relevance

/external/libopus/celt/
Dentenc.c214 void ec_enc_patch_initial_bits(ec_enc *_this,unsigned _val,unsigned _nbits){ in ec_enc_patch_initial_bits() argument
217 celt_assert(_nbits<=EC_SYM_BITS); in ec_enc_patch_initial_bits()
218 shift=EC_SYM_BITS-_nbits; in ec_enc_patch_initial_bits()
219 mask=((1<<_nbits)-1)<<shift; in ec_enc_patch_initial_bits()
228 else if(_this->rng<=(EC_CODE_TOP>>_nbits)){ in ec_enc_patch_initial_bits()
Dentenc.h93 void ec_enc_patch_initial_bits(ec_enc *_this,unsigned _val,unsigned _nbits);
/external/python/cpython3/Lib/
D_pydecimal.py2151 e = _nbits(xc)-1
2195 e = _nbits(xc)*28//65
2232 xc_bits = _nbits(xc)
2254 a = 1 << -(-_nbits(xc)//n) # initial estimate
5670 _nbits = int.bit_length variable
5908 R = _nbits((x<<L)//M)
/external/python/cpython2/Lib/
Ddecimal.py2035 e = _nbits(xc)-1
2079 e = _nbits(xc)*28//65
2116 xc_bits = _nbits(xc)
2138 a = 1L << -(-_nbits(xc)//n) # initial estimate
5501 def _nbits(n, correction = { function
5750 R = _nbits((long(x)<<L)//M)