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

  /external/jpeg/
jmorecfg.h 362 * two 16-bit shorts is faster than multiplying two ints. Define MULTIPLIER
363 * as short on such a machine. MULTIPLIER must be at least 16 bits wide.
366 #ifndef MULTIPLIER
368 #define MULTIPLIER short
371 #define MULTIPLIER short
373 #define MULTIPLIER int /* type for fastest integer multiply */
jdct.h 46 * well as perform the IDCT; for dequantization, it uses the multiplier table
60 typedef MULTIPLIER ISLOW_MULT_TYPE; /* short or int, whichever is faster */
62 typedef MULTIPLIER IFAST_MULT_TYPE; /* 16 bits is OK, use short if faster */
  /external/qemu/distrib/jpeg-6b/
jmorecfg.h 364 * two 16-bit shorts is faster than multiplying two ints. Define MULTIPLIER
365 * as short on such a machine. MULTIPLIER must be at least 16 bits wide.
368 #ifndef MULTIPLIER
370 #define MULTIPLIER short
372 #define MULTIPLIER int /* type for fastest integer multiply */
jdct.h 42 * well as perform the IDCT; for dequantization, it uses the multiplier table
56 typedef MULTIPLIER ISLOW_MULT_TYPE; /* short or int, whichever is faster */
58 typedef MULTIPLIER IFAST_MULT_TYPE; /* 16 bits is OK, use short if faster */
  /external/webp/src/dsp/
upsampling.c 244 #define MULTIPLIER(a) ((a) * 32897UL)
247 #define MULTIPLIER(a) ((a) * 65793UL)
260 const uint32_t mult = MULTIPLIER(a);
269 #undef MULTIPLIER
274 #define MULTIPLIER(a) ((a) * 0x1111) // 0x1111 ~= (1 << 16) / 15
294 const uint32_t mult = MULTIPLIER(a);
304 #undef MULTIPLIER

Completed in 293 milliseconds