Searched refs:_ilog (Results 1 – 5 of 5) sorted by relevance
/external/tremolo/Tremolo/ |
D | codebook.c | 52 int _ilog(unsigned int v){ in _ilog() function 132 if(_ilog(3*used-6)+1 <= leafwidth*4) in _determine_node_bytes() 372 int bits=_ilog(b->entries); in _book_maptype1_quantvals() 431 if(_ilog(s->dim)+_ilog(s->entries)>24)goto _eofout; in vorbis_book_unpack() 477 long num=oggpack_read(opb,_ilog(s->entries-i)); in vorbis_book_unpack() 513 s->dec_nodeb=_determine_node_bytes(s->used_entries,_ilog(s->entries)/8+1); in vorbis_book_unpack() 514 s->dec_leafw=_determine_leaf_words(s->dec_nodeb,_ilog(s->entries)/8+1); in vorbis_book_unpack() 531 long total2=(_ilog(quantvals-1)*s->dim+8)/8+(s->q_bits+7)/8; in vorbis_book_unpack() 577 s->q_pack=_ilog(quantvals-1); in vorbis_book_unpack() 580 (_ilog(quantvals-1)*s->dim+8)/8); in vorbis_book_unpack() [all …]
|
D | codebook.h | 86 extern int _ilog(unsigned int v);
|
D | floor0.c | 418 int booknum=oggpack_read(&vd->opb,_ilog(info->numbooks)); in floor0_inverse1()
|
/external/python/cpython3/Lib/ |
D | _pydecimal.py | 5724 def _ilog(x, M, L = 8): function 5796 log_d = _ilog(c, M) # error < 5 + 22 = 27 5830 log_d = _ilog(c, 10**p) # error < 5 + 22 = 27 5876 digits = str(_div_nearest(_ilog(10*M, M), 100))
|
/external/python/cpython2/Lib/ |
D | decimal.py | 5566 def _ilog(x, M, L = 8): function 5638 log_d = _ilog(c, M) # error < 5 + 22 = 27 5672 log_d = _ilog(c, 10**p) # error < 5 + 22 = 27 5718 digits = str(_div_nearest(_ilog(10*M, M), 100))
|