HomeSort by relevance Sort by last modified time
    Searched defs:celt_ilog2 (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/opus/src/celt/
fixed_c6x.h 40 #define celt_ilog2(x) (30 - _norm(x)) macro
fixed_c5x.h 73 #define celt_ilog2(x) (30 - _lnorm(x)) macro
mathops.h 148 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/
mathops.h 148 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 41 milliseconds