Home
last modified time | relevance | path

Searched refs:MULTIPLIER (Results 1 – 11 of 11) sorted by relevance

/external/google-fruit/extras/benchmark/
Dcompile_time_benchmark.cpp19 #if MULTIPLIER == 1
22 #elif MULTIPLIER == 2
25 #elif MULTIPLIER == 4
28 #elif MULTIPLIER == 8
31 #elif MULTIPLIER == 16
34 #elif MULTIPLIER == 32
37 #elif MULTIPLIER == 64
40 #elif MULTIPLIER == 128
43 #elif MULTIPLIER == 256
46 #elif MULTIPLIER == 512
[all …]
Dnew_delete_benchmark.cpp23 #if MULTIPLIER == 1
26 #elif MULTIPLIER == 10
29 #elif MULTIPLIER == 100
32 #elif MULTIPLIER == 1000
/external/webp/src/dsp/
Dalpha_processing.c216 #define MULTIPLIER(a) ((a) * 32897U) macro
219 #define MULTIPLIER(a) ((a) * 65793U) macro
233 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply_C()
243 #undef MULTIPLIER
248 #define MULTIPLIER(a) ((a) * 0x1111) // 0x1111 ~= (1 << 16) / 15 macro
271 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply4444_C()
281 #undef MULTIPLIER
Dalpha_processing_neon.c22 #define MULTIPLIER(a) ((a) * 0x8081) macro
68 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply_NEON()
78 #undef MULTIPLIER
Dalpha_processing_sse2.c149 #define MULTIPLIER(a) ((a) * 0x8081) macro
201 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply_SSE2()
210 #undef MULTIPLIER
/external/libjpeg-turbo/
Djmorecfg.h403 #ifndef MULTIPLIER
405 #define MULTIPLIER int /* type for fastest integer multiply */ macro
407 #define MULTIPLIER short /* prefer 16-bit with SIMD for parellelism */ macro
Djdct.h66 typedef MULTIPLIER ISLOW_MULT_TYPE; /* short or int, whichever is faster */
68 typedef MULTIPLIER IFAST_MULT_TYPE; /* 16 bits is OK, use short if faster */
/external/grpc-grpc/doc/
Dconnection-backoff.md10 1. MULTIPLIER (factor with which to multiply backoff after a failed retry)
28 current_backoff = Min(current_backoff * MULTIPLIER, MAX_BACKOFF)
37 MULTIPLIER = 1.6
/external/ltp/testcases/kernel/controllers/cpuctl/
Dcpuctl_def_task01.c71 #define MULTIPLIER 10 /* Rate at which share value gets multiplied */ macro
233 myshares = MULTIPLIER * myshares; in main()
Dcpuctl_test01.c70 #define MULTIPLIER 10 /* decides the rate at which share value gets multiplied */ macro
220 myshares = MULTIPLIER * myshares; in main()
/external/libjpeg-turbo/simd/nasm/
Djsimdcfg.inc.h110 ; To maximize parallelism, Type MULTIPLIER is changed to short.