Home | History | Annotate | Download | only in libspeex

Lines Matching defs:ind

298    int ind;
305 ind = SHR32(xx,10);
306 if (ind<0)
308 if (ind>19)
310 frac = SHL32(xx-SHL32(ind,10),5);
311 return SHL32(DIV32_16(PSHR32(MULT16_16(Q15_ONE-frac,table[ind]) + MULT16_16(frac,table[ind+1]),7),(spx_sqrt(SHL32(xx,15)+6711))),7);
357 int ind;
366 ind = (int)integer;
367 if (ind<0)
369 if (ind>19)
372 return FRAC_SCALING*((1-frac)*table[ind] + frac*table[ind+1])/sqrt(x+.0001f);