Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/libwebp/src/dsp/
Dalpha_processing.c218 #define MULTIPLIER(a) ((a) * 32897U) macro
221 #define MULTIPLIER(a) ((a) * 65793U) macro
235 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply_C()
245 #undef MULTIPLIER
250 #define MULTIPLIER(a) ((a) * 0x1111) // 0x1111 ~= (1 << 16) / 15 macro
273 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply4444_C()
283 #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.c150 #define MULTIPLIER(a) ((a) * 0x8081) macro
202 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply_SSE2()
211 #undef MULTIPLIER
/third_party/skia/third_party/externals/libjpeg-turbo/
Djmorecfg.h368 #ifndef MULTIPLIER
370 #define MULTIPLIER int /* type for fastest integer multiply */ macro
372 #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 */
/third_party/nghttp2/src/
Dshrpx_connect_blocker.cc71 constexpr auto MULTIPLIER = 1.6; variable
85 util::int_pow(MULTIPLIER, std::min(MAX_BACKOFF_EXP, fail_count_)); in on_failure()
Dshrpx_live_check.cc171 constexpr auto MULTIPLIER = 1.6; variable
177 util::int_pow(MULTIPLIER, std::min(fail_count_, MAX_BACKOFF_EXP)); in schedule()
Dshrpx_connection_handler.cc847 constexpr auto MULTIPLIER = 3.2; variable
862 MULTIPLIER, in on_tls_ticket_key_network_error()
/third_party/ltp/testcases/kernel/controllers/cpuctl/
Dcpuctl_def_task01.c71 #define MULTIPLIER 10 /* Rate at which share value gets multiplied */ macro
231 myshares = MULTIPLIER * myshares; in main()
Dcpuctl_test01.c70 #define MULTIPLIER 10 /* decides the rate at which share value gets multiplied */ macro
218 myshares = MULTIPLIER * myshares; in main()
/third_party/skia/third_party/externals/libjpeg-turbo/simd/nasm/
Djsimdcfg.inc.h112 ; To maximize parallelism, Type MULTIPLIER is changed to short.