HomeSort by relevance Sort by last modified time
    Searched refs:MULT_FIX (Results 1 - 5 of 5) sorted by null

  /external/webp/src/dsp/
rescaler_neon.c 40 #define MULT_FIX(A, B) \
45 #error "MULT_FIX/WEBP_RESCALER_RFIX need some more work"
80 const uint32x4_t B0 = MULT_FIX(A0, fy_scale_half);
81 const uint32x4_t B1 = MULT_FIX(A1, fy_scale_half);
100 const uint32x4_t D0 = MULT_FIX(C0, fy_scale_half);
101 const uint32x4_t D1 = MULT_FIX(C1, fy_scale_half);
140 const uint32x4_t C0 = MULT_FIX(B0, fxy_scale_half);
141 const uint32x4_t C1 = MULT_FIX(B1, fxy_scale_half);
157 const uint32x4_t A0 = MULT_FIX(in0, fxy_scale_half);
158 const uint32x4_t A1 = MULT_FIX(in1, fxy_scale_half)
    [all...]
rescaler.c 23 #define MULT_FIX(x, y) (((uint64_t)(x) * (y) + ROUNDER) >> WEBP_RESCALER_RFIX)
87 sum = (int)MULT_FIX(frac, wrk->fx_scale);
111 const int v = (int)MULT_FIX(J, wrk->fy_scale);
121 const int v = (int)MULT_FIX(J, wrk->fy_scale);
140 const int v = (int)MULT_FIX(irow[x_out] - frac, wrk->fxy_scale);
146 const int v = (int)MULT_FIX(irow[x_out], wrk->fxy_scale);
154 #undef MULT_FIX
rescaler_mips_dsp_r2.c 22 #define MULT_FIX(x, y) (((uint64_t)(x) * (y) + ROUNDER) >> WEBP_RESCALER_RFIX)
111 const int v = (int)MULT_FIX(*irow - frac, wrk->fxy_scale);
219 const int v = (int)MULT_FIX(J, wrk->fy_scale);
290 const int v = (int)MULT_FIX(J, wrk->fy_scale);
297 #undef MULT_FIX
rescaler_sse2.c 27 #define MULT_FIX(x, y) (((uint64_t)(x) * (y) + ROUNDER) >> WEBP_RESCALER_RFIX)
247 const int v = (int)MULT_FIX(J, wrk->fy_scale);
280 const int v = (int)MULT_FIX(J, wrk->fy_scale);
324 const int v = (int)MULT_FIX(irow[x_out] - frac, wrk->fxy_scale);
340 const int v = (int)MULT_FIX(irow[x_out], scale);
348 #undef MULT_FIX
rescaler_msa.c 24 #define MULT_FIX(x, y) (((uint64_t)(x) * (y) + ROUNDER) >> WEBP_RESCALER_RFIX)
168 const int v = (int)MULT_FIX(J, wrk->fy_scale);
242 const int v = (int)MULT_FIX(J, wrk->fy_scale);
344 const int v = (int)MULT_FIX(irow[x_out] - frac, wrk->fxy_scale);
405 const int v = (int)MULT_FIX(irow[x_out], wrk->fxy_scale);

Completed in 218 milliseconds