Lines Matching defs:len
73 void (*quantize)(int16_t *dst, const float *src, float *dither, int len);
105 static void dither_int_to_float_rectangular_c(float *dst, int *src, int len)
108 for (i = 0; i < len; i++)
112 static void dither_int_to_float_triangular_c(float *dst, int *src0, int len)
115 int *src1 = src0 + len;
117 for (i = 0; i < len; i++) {
124 static void quantize_c(int16_t *dst, const float *src, float *dither, int len)
127 for (i = 0; i < len; i++)
133 static void dither_highpass_filter(float *src, int len)
138 for (i = 0; i < len - 2; i++)