Lines Matching refs:REAL
38 static REAL dotp(REAL a[], REAL b[])
40 REAL sum0 = 0.0f, sum1 = 0.0f;
51 static REAL dotp_sse(REAL a[], REAL b[])
56 REAL sum;
95 a->w = (REAL *) (((uintptr_t) a->w_arr) - (((uintptr_t) a->w_arr) % 16) + 16);
125 static float AEC_dtd(AEC *a, REAL d, REAL x)
188 static REAL AEC_nlms_pw(AEC *a, REAL d, REAL x_, float stepsize)
190 REAL e;
191 REAL ef;
208 REAL mikro_ef = stepsize * ef / a->dotp_xf_xf;
226 memmove(a->x + a->j + 1, a->x, (NLMS_LEN - 1) * sizeof(REAL));
227 memmove(a->xf + a->j + 1, a->xf, (NLMS_LEN - 1) * sizeof(REAL));
243 REAL d = (REAL) d_;
244 REAL x = (REAL) x_;