Lines Matching defs:coef
308 u64 *coef;
322 coef = interp[i].coeff;
372 r = (uint32_t *)&coef[i];
401 u64 coef = *infilter;
402 s64 exp = (coef & 0x7ff0000000000000ll) >> 52;
410 *outfilter = coef;
414 /* coef * 2^shift ==> exp + shift */
418 dev_err(dev, "coef out of range\n");
422 outcoef = (u64)(coef & 0x800FFFFFFFFFFFFFll) + ((u64)exp << 52);
429 u64 *coef, int n_taps, int shift)
441 if (!coef) {
442 dev_err(dev, "coef table is NULL\n");
455 ret = fsl_easrc_normalize_filter(easrc, &coef[i], &tmp, shift);