OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:celt_ilog2
(Results
1 - 3
of
3
) sorted by null
/external/libopus/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);
Completed in 61 milliseconds