OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MULTIPLIER
(Results
1 - 6
of
6
) sorted by null
/external/jpeg/
jmorecfg.h
367
* two 16-bit shorts is faster than multiplying two ints. Define
MULTIPLIER
368
* as short on such a machine.
MULTIPLIER
must be at least 16 bits wide.
371
#ifndef
MULTIPLIER
373
#define
MULTIPLIER
short
375
#define
MULTIPLIER
short
377
#define
MULTIPLIER
short
379
#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/chromium_org/third_party/libjpeg_turbo/
jmorecfg.h
385
* two 16-bit shorts is faster than multiplying two ints. Define
MULTIPLIER
386
* as short on such a machine.
MULTIPLIER
must be at least 16 bits wide.
389
#ifndef
MULTIPLIER
391
#define
MULTIPLIER
int /* type for fastest integer multiply */
393
#define
MULTIPLIER
short /* prefer 16-bit with SIMD for parellelism */
jdct.h
50
* well as perform the IDCT; for dequantization, it uses the
multiplier
table
64
typedef
MULTIPLIER
ISLOW_MULT_TYPE; /* short or int, whichever is faster */
66
typedef
MULTIPLIER
IFAST_MULT_TYPE; /* 16 bits is OK, use short if faster */
/external/chromium_org/third_party/libwebp/dsp/
alpha_processing.c
213
#define
MULTIPLIER
(a) ((a) * 32897U)
216
#define
MULTIPLIER
(a) ((a) * 65793U)
229
const uint32_t mult =
MULTIPLIER
(a);
238
#undef
MULTIPLIER
243
#define
MULTIPLIER
(a) ((a) * 0x1111) // 0x1111 ~= (1 << 16) / 15
266
const uint32_t mult =
MULTIPLIER
(a);
276
#undef
MULTIPLIER
/external/chromium_org/third_party/libjpeg_turbo/simd/
jsimdcfg.inc.h
110
; To maximize parallelism, Type
MULTIPLIER
is changed to short.
Completed in 801 milliseconds