Lines Matching defs:coeff
3171 u32 coeff[BAND_MAX];
3174 memcpy(&coeff[0], ucontrol->value.bytes.data, params->max);
3181 set_iir_band_coeff(component, iir_idx, band_idx, coeff[0]);
3182 set_iir_band_coeff(component, iir_idx, band_idx, coeff[1]);
3183 set_iir_band_coeff(component, iir_idx, band_idx, coeff[2]);
3184 set_iir_band_coeff(component, iir_idx, band_idx, coeff[3]);
3185 set_iir_band_coeff(component, iir_idx, band_idx, coeff[4]);
3200 u32 coeff[BAND_MAX];
3202 coeff[0] = get_iir_band_coeff(component, iir_idx, band_idx, 0);
3203 coeff[1] = get_iir_band_coeff(component, iir_idx, band_idx, 1);
3204 coeff[2] = get_iir_band_coeff(component, iir_idx, band_idx, 2);
3205 coeff[3] = get_iir_band_coeff(component, iir_idx, band_idx, 3);
3206 coeff[4] = get_iir_band_coeff(component, iir_idx, band_idx, 4);
3208 memcpy(ucontrol->value.bytes.data, &coeff[0], params->max);