Lines Matching refs:normalize

107 static void		f2flac8_array (const float *src, int32_t *dest, int count, int normalize) ;
108 static void f2flac16_array (const float *src, int32_t *dest, int count, int normalize) ;
109 static void f2flac24_array (const float *src, int32_t *dest, int count, int normalize) ;
110 static void f2flac8_clip_array (const float *src, int32_t *dest, int count, int normalize) ;
111 static void f2flac16_clip_array (const float *src, int32_t *dest, int count, int normalize) ;
112 static void f2flac24_clip_array (const float *src, int32_t *dest, int count, int normalize) ;
113 static void d2flac8_array (const double *src, int32_t *dest, int count, int normalize) ;
114 static void d2flac16_array (const double *src, int32_t *dest, int count, int normalize) ;
115 static void d2flac24_array (const double *src, int32_t *dest, int count, int normalize) ;
116 static void d2flac8_clip_array (const double *src, int32_t *dest, int count, int normalize) ;
117 static void d2flac16_clip_array (const double *src, int32_t *dest, int count, int normalize) ;
118 static void d2flac24_clip_array (const double *src, int32_t *dest, int count, int normalize) ;
1187 f2flac8_clip_array (const float *src, int32_t *dest, int count, int normalize)
1190 normfact = normalize ? (8.0 * 0x10) : 1.0 ;
1209 f2flac16_clip_array (const float *src, int32_t *dest, int count, int normalize)
1212 normfact = normalize ? (8.0 * 0x1000) : 1.0 ;
1229 f2flac24_clip_array (const float *src, int32_t *dest, int count, int normalize)
1232 normfact = normalize ? (8.0 * 0x100000) : 1.0 ;
1252 f2flac8_array (const float *src, int32_t *dest, int count, int normalize)
1253 { float normfact = normalize ? (1.0 * 0x7F) : 1.0 ;
1260 f2flac16_array (const float *src, int32_t *dest, int count, int normalize)
1261 { float normfact = normalize ? (1.0 * 0x7FFF) : 1.0 ;
1268 f2flac24_array (const float *src, int32_t *dest, int count, int normalize)
1269 { float normfact = normalize ? (1.0 * 0x7FFFFF) : 1.0 ;
1318 d2flac8_clip_array (const double *src, int32_t *dest, int count, int normalize)
1321 normfact = normalize ? (8.0 * 0x10) : 1.0 ;
1340 d2flac16_clip_array (const double *src, int32_t *dest, int count, int normalize)
1343 normfact = normalize ? (8.0 * 0x1000) : 1.0 ;
1362 d2flac24_clip_array (const double *src, int32_t *dest, int count, int normalize)
1365 normfact = normalize ? (8.0 * 0x100000) : 1.0 ;
1384 d2flac8_array (const double *src, int32_t *dest, int count, int normalize)
1385 { double normfact = normalize ? (1.0 * 0x7F) : 1.0 ;
1392 d2flac16_array (const double *src, int32_t *dest, int count, int normalize)
1393 { double normfact = normalize ? (1.0 * 0x7FFF) : 1.0 ;
1400 d2flac24_array (const double *src, int32_t *dest, int count, int normalize)
1401 { double normfact = normalize ? (1.0 * 0x7FFFFF) : 1.0 ;