Lines Matching defs:output
147 filterYule(const Float_t * input, Float_t * output, size_t nSamples, const Float_t * const kernel)
165 Float_t x1 = output[-10] * kernel[11] + output[ -9] * kernel[12];
166 Float_t x5 = output[ -8] * kernel[13] + output[ -7] * kernel[14];
167 Float_t x9 = output[ -6] * kernel[15] + output[ -5] * kernel[16];
168 Float_t xD = output[ -4] * kernel[17] + output[ -3] * kernel[18];
169 Float_t xH = output[ -2] * kernel[19] + output[ -1] * kernel[20];
173 output[0] = (Float_t)(s1 - s2);
175 ++output;
181 filterButter(const Float_t * input, Float_t * output, size_t nSamples, const Float_t * const kernel)
185 Float_t s2 = output[-2] * kernel[1] + output[-1] * kernel[3];
186 output[0] = (Float_t)(s1 - s2);
187 ++output;