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

  /external/webp/src/dsp/
rescaler_mips_dsp_r2.c 23 #define MULT_FIX_FLOOR(x, y) (((uint64_t)(x) * (y)) >> WEBP_RESCALER_RFIX)
110 const uint32_t frac = (uint32_t)MULT_FIX_FLOOR(*frow++, yscale);
158 const int v = (int)MULT_FIX_FLOOR(*irow, wrk->fxy_scale);
296 #undef MULT_FIX_FLOOR
rescaler_neon.c 42 #define MULT_FIX_FLOOR(A, B) \
136 const uint32x4_t A0 = MULT_FIX_FLOOR(in0, yscale_half);
137 const uint32x4_t A1 = MULT_FIX_FLOOR(in1, yscale_half);
175 #undef MULT_FIX_FLOOR
rescaler.c 24 #define MULT_FIX_FLOOR(x, y) (((uint64_t)(x) * (y)) >> WEBP_RESCALER_RFIX)
139 const uint32_t frac = (uint32_t)MULT_FIX_FLOOR(frow[x_out], yscale);
153 #undef MULT_FIX_FLOOR
rescaler_sse2.c 28 #define MULT_FIX_FLOOR(x, y) (((uint64_t)(x) * (y)) >> WEBP_RESCALER_RFIX)
323 const uint32_t frac = (int)MULT_FIX_FLOOR(frow[x_out], yscale);
347 #undef MULT_FIX_FLOOR
rescaler_msa.c 25 #define MULT_FIX_FLOOR(x, y) (((uint64_t)(x) * (y)) >> WEBP_RESCALER_RFIX)
343 const uint32_t frac = (uint32_t)MULT_FIX_FLOOR(frow[x_out], yscale);

Completed in 89 milliseconds