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

  /external/chromium_org/third_party/opus/src/celt/
mathops.c 73 int shift = celt_ilog2(b)-29;
128 k = (celt_ilog2(x)>>1)-7;
186 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 148 static 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);
pitch.c 59 xshift = celt_ilog2(maxcorr)-14;
166 shift = celt_ilog2(maxabs)-10;
326 shift = celt_ilog2(MAX32(1, MAX32(xmax, ymax)))-11;
440 sh = celt_ilog2(x2y2)>>1;
476 sh = celt_ilog2(x2y2)>>1;
vq.c 123 k = celt_ilog2(Ryy)>>1;
262 rshift = 1+celt_ilog2(K-pulsesLeft+i+1);
363 k = celt_ilog2(E)>>1;
bands.c 114 int shift = celt_ilog2(maxval)-10;
267 shift = celt_ilog2(t)>>1;
402 kl = celt_ilog2(El)>>1;
403 kr = celt_ilog2(Er)>>1;
    [all...]
celt_lpc.c 267 shift = celt_ilog2(ac0)-30+10;
celt_encoder.c 277 shift = 14-celt_ilog2(1+celt_maxabs16(tmp, len));
    [all...]
  /external/chromium_org/third_party/opus/src/celt/tests/
test_unit_mathops.c 245 lg = celt_ilog2(x);
248 printf("celt_ilog2 failed: 0<=celt_ilog2(x)<31 (x = %d, celt_ilog2(x) = %d)\n",x,lg);
255 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/chromium_org/third_party/opus/src/src/
opus_encoder.c 399 shift=celt_ilog2(Fs/(cutoff_Hz*3));
    [all...]

Completed in 259 milliseconds