Lines Matching defs:out
194 static void dither_short (const short *in, short *out, int frames, int channels) ;
195 static void dither_int (const int *in, int *out, int frames, int channels) ;
197 static void dither_float (const float *in, float *out, int frames, int channels) ;
198 static void dither_double (const double *in, double *out, int frames, int channels) ;
396 dither_short (const short *in, short *out, int frames, int channels)
401 out [k] = in [k] ;
406 dither_int (const int *in, int *out, int frames, int channels)
411 out [k] = in [k] ;
416 dither_float (const float *in, float *out, int frames, int channels)
421 out [k] = in [k] ;
426 dither_double (const double *in, double *out, int frames, int channels)
431 out [k] = in [k] ;
446 DO_NOT_USE_sf_dither_short (const SF_DITHER_INFO *dither, const short *in, short *out, int frames, int channels)
457 out [k] = in [k] ;
468 DO_NOT_USE_sf_dither_int (const SF_DITHER_INFO *dither, const int *in, int *out, int frames, int channels)
479 out [k] = in [k] ;
490 DO_NOT_USE_sf_dither_float (const SF_DITHER_INFO *dither, const float *in, float *out, int frames, int channels)
501 out [k] = in [k] ;
512 DO_NOT_USE_sf_dither_double (const SF_DITHER_INFO *dither, const double *in, double *out, int frames, int channels)
523 out [k] = in [k] ;