OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EC_ILOG
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/opus/src/celt/
ecintrin.h
49
This macro should only be used for implementing
ec_ilog
(), if it is defined.
50
All other code should use
EC_ILOG
() instead.*/
82
# define
EC_ILOG
(_x) (EC_CLZ0-EC_CLZ(_x))
84
int
ec_ilog
(opus_uint32 _v);
85
# define
EC_ILOG
(_x) (
ec_ilog
(_x))
entcode.c
41
int
ec_ilog
(opus_uint32 _v){
function
83
l=
EC_ILOG
(_this->rng);
entcode.h
105
return _this->nbits_total-
EC_ILOG
(_this->rng);
mathops.c
51
bshift=(
EC_ILOG
(_val)-1)>>1;
entenc.c
179
/*In order to optimize
EC_ILOG
(), it is undefined for the value 0.*/
182
ftb=
EC_ILOG
(_ft);
252
l=EC_CODE_BITS-
EC_ILOG
(_this->rng);
entdec.c
202
/*In order to optimize
EC_ILOG
(), it is undefined for the value 0.*/
205
ftb=
EC_ILOG
(_ft);
mathops.h
151
return
EC_ILOG
(x)-1;
celt_lpc.c
291
int shift2 = 29 -
EC_ILOG
(ac[0]);
cwrs.c
48
l=
EC_ILOG
(val);
bands.c
84
lc=
EC_ILOG
(icos);
85
ls=
EC_ILOG
(isin);
[
all
...]
celt_encoder.c
[
all
...]
/external/chromium_org/third_party/opus/src/silk/
macros.h
83
return 32 -
EC_ILOG
(in16<<16|0x8000);
88
return in32 ? 32 -
EC_ILOG
(in32) : 32;
Completed in 74 milliseconds