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

/external/chromium_org/third_party/opus/src/celt/
H A Dfixed_c6x.h40 #define celt_ilog2(x) (30 - _norm(x)) macro
H A Dfixed_c5x.h73 #define celt_ilog2(x) (30 - _lnorm(x)) macro
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);
/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 177 milliseconds