Home | History | Annotate | Download | only in dsp

Lines Matching defs:x_sub

71       accum -= wrk->x_sub;
91 accum -= wrk->x_sub;
114 const int x_sub = wrk->x_sub;
117 const __m128i mult0 = _mm_set1_epi16(x_sub);
124 if (wrk->num_channels != 4 || wrk->x_add > (x_sub << 7)) {
138 // To avoid overflow, we need: base * x_add / x_sub < 32768
139 // => x_add < x_sub << 7. That's a 1/128 reduction ratio limit.
141 accum -= x_sub;
150 const __m128i B0 = _mm_unpacklo_epi16(A0, A1); // sum * x_sub
151 const __m128i frow_out = _mm_sub_epi32(B0, frac); // sum * x_sub - frac