Lines Matching defs:indx
242 { int count, total = 0, indx = 0 ;
244 while (indx < len)
246 { memset (ptr + indx, 0, (len - indx) * sizeof (short)) ;
254 count = (len - indx > count) ? count : len - indx ;
256 memcpy (&(ptr [indx]), &(pgsm610->samples [pgsm610->samplecount]), count * sizeof (short)) ;
257 indx += count ;
259 total = indx ;
475 { int count, total = 0, indx = 0 ;
477 while (indx < len)
480 if (count > len - indx)
481 count = len - indx ;
483 memcpy (&(pgsm610->samples [pgsm610->samplecount]), &(ptr [indx]), count * sizeof (short)) ;
484 indx += count ;
486 total = indx ;