Searched defs:celt_ilog2 (Results 1 - 1 of 1) sorted by relevance

/external/libopus/celt/
H A Dmathops.h148 static OPUS_INLINE opus_int16 celt_ilog2(opus_int32 x) function
150 celt_assert2(x>0, "celt_ilog2() only defined for strictly positive numbers");
159 return x <= 0 ? 0 : celt_ilog2(x);
178 i = celt_ilog2(x);

Completed in 214 milliseconds