Lines Matching defs:indx
321 { int count, total = 0, indx = 0 ;
323 while (indx < len)
325 { memset (&(ptr [indx]), 0, (size_t) ((len - indx) * sizeof (short))) ;
334 count = (len - indx > count) ? count : len - indx ;
336 memcpy (&(ptr [indx]), &(pms->samples [pms->samplecount * pms->channels]), count * sizeof (short)) ;
337 indx += count ;
339 total = indx ;
649 { int count, total = 0, indx = 0 ;
651 while (indx < len)
654 if (count > len - indx)
655 count = len - indx ;
658 indx += count ;
660 total = indx ;
808 ** The predictor is in the range [0..6] which is an indx into the two AdaptCoeff tables.