Lines Matching defs:buffer
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)
391 { fmaxval = fabs (buffer [chan]) ;
394 if (fmaxval < fabs (buffer [k]))
395 { fmaxval = fabs (buffer [k]) ;
1005 bf2f_array (float *buffer, int count)
1007 { buffer [i] = FLOAT32_READ ((unsigned char *) &buffer [i]) ;
1012 f2bf_array (float *buffer, int count)
1014 { FLOAT32_WRITE (buffer [i], (unsigned char*) &buffer [i]) ;