/external/libopus/celt/ |
mathops.c | 74 int shift = celt_ilog2(b)-29; 129 k = (celt_ilog2(x)>>1)-7; 187 i = celt_ilog2(x);
|
fixed_c5x.h | 73 #define celt_ilog2(x) (30 - _lnorm(x)) macro
|
fixed_c6x.h | 40 #define celt_ilog2(x) (30 - _norm(x)) macro
|
mathops.h | 180 static OPUS_INLINE opus_int16 celt_ilog2(opus_int32 x) function 191 return x <= 0 ? 0 : celt_ilog2(x); 210 i = celt_ilog2(x);
|
pitch.c | 59 xshift = celt_ilog2(maxcorr)-14; 159 shift = celt_ilog2(maxabs)-10; 319 shift = celt_ilog2(MAX32(1, MAX32(xmax, ymax)))-11; 404 sx = celt_ilog2(xx)-14; 405 sy = celt_ilog2(yy)-14;
|
vq.c | 128 k = celt_ilog2(Ryy)>>1; 259 rshift = 1+celt_ilog2(K-pulsesLeft+i+1); 391 k = celt_ilog2(E)>>1;
|
celt_lpc.c | 255 shift = celt_ilog2(ac0)-30+10;
|
bands.c | 111 int shift = celt_ilog2(maxval) - 14 + (((m->logN[i]>>BITRES)+LM+1)>>1); 294 shift = celt_ilog2(t)>>1; 382 shift = celt_ilog2(EPSILON+MAX32(Ex, Ey))-14; 452 kl = celt_ilog2(El)>>1; 453 kr = celt_ilog2(Er)>>1; [all...] |
kiss_fft.c | 456 st->scale_shift = celt_ilog2(st->nfft);
|
celt_encoder.c | 305 shift = 14-celt_ilog2(MAX16(1, celt_maxabs16(tmp, len))); [all...] |
/external/libopus/celt/mips/ |
vq_mipsr1.h | 108 k = celt_ilog2(E)>>1;
|
/external/libopus/celt/tests/ |
test_unit_mathops.c | 236 lg = celt_ilog2(x); 239 printf("celt_ilog2 failed: 0<=celt_ilog2(x)<31 (x = %d, celt_ilog2(x) = %d)\n",x,lg); 246 printf("celt_ilog2 failed: 2**celt_ilog2(x)<=x<2**(celt_ilog2(x)+1) (x = %d, 2**celt_ilog2(x) = %d)\n",x,y);
|
/external/libopus/src/ |
opus_encoder.c | 389 shift=celt_ilog2(Fs/(cutoff_Hz*4)); 873 max_shift = celt_ilog2(len); 874 shift = IMAX(0, (celt_ilog2(sample_max) << 1) + max_shift - 28); [all...] |