Lines Matching refs:coef
27 void mac(int32_t& l, int32_t& r, TC coef, const int16_t* samples) in mac() argument
30 l = mulAddRL(1, rl, coef, l); in mac()
31 r = mulAddRL(0, rl, coef, r); in mac()
36 void mac(int32_t& l, TC coef, const int16_t* samples) in mac() argument
38 l = mulAdd(samples[0], coef, l); in mac()
44 void mac(float& l, float& r, TC coef, const float* samples) in mac() argument
46 l += *samples++ * coef; in mac()
47 r += *samples * coef; in mac()
52 void mac(float& l, TC coef, const float* samples) in mac() argument
54 l += *samples * coef; in mac()
88 inline void acc(TC coef, const TI*& data) { in acc() argument
89 mac(value, coef, data++); in acc()
90 Accumulator<CHANNELS-1, TO>::acc(coef, data); in acc()
106 inline void acc(TC coef __unused, const TI*& data __unused) { in acc()