Lines Matching defs:count
66 static void float32_peak_update (SF_PRIVATE *psf, const float *buffer, int count, sf_count_t indx) ;
78 static void bf2f_array (float *buffer, int count) ;
79 static void f2bf_array (float *buffer, int count) ;
385 float32_peak_update (SF_PRIVATE *psf, const float *buffer, int count, sf_count_t indx)
393 for (k = chan ; k < count ; k += psf->sf.channels)
438 f2s_array (const float *src, int count, short *dest, float scale)
440 for (int i = 0 ; i < count ; i++)
446 f2s_clip_array (const float *src, int count, short *dest, float scale)
447 { for (int i = 0 ; i < count ; i++)
460 f2i_array (const float *src, int count, int *dest, float scale)
461 { for (int i = 0 ; i < count ; i++)
467 f2i_clip_array (const float *src, int count, int *dest, float scale)
468 { for (int i = 0 ; i < count ; i++)
481 f2d_array (const float *src, int count, double *dest)
482 { for (int i = 0 ; i < count ; i++)
488 s2f_array (const short *src, float *dest, int count, float scale)
489 { for (int i = 0 ; i < count ; i++)
495 i2f_array (const int *src, float *dest, int count, float scale)
496 { for (int i = 0 ; i < count ; i++)
502 d2f_array (const double *src, float *dest, int count)
503 { for (int i = 0 ; i < count ; i++)
1005 bf2f_array (float *buffer, int count)
1006 { for (int i = 0 ; i < count ; i++)
1012 f2bf_array (float *buffer, int count)
1013 { for (int i = 0 ; i < count ; i++)