Searched refs:MULTIPLIER (Results 1 – 11 of 11) sorted by relevance
218 #define MULTIPLIER(a) ((a) * 32897U) macro221 #define MULTIPLIER(a) ((a) * 65793U) macro235 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply_C()245 #undef MULTIPLIER250 #define MULTIPLIER(a) ((a) * 0x1111) // 0x1111 ~= (1 << 16) / 15 macro273 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply4444_C()283 #undef MULTIPLIER
22 #define MULTIPLIER(a) ((a) * 0x8081) macro68 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply_NEON()78 #undef MULTIPLIER
150 #define MULTIPLIER(a) ((a) * 0x8081) macro202 const uint32_t mult = MULTIPLIER(a); in ApplyAlphaMultiply_SSE2()211 #undef MULTIPLIER
368 #ifndef MULTIPLIER370 #define MULTIPLIER int /* type for fastest integer multiply */ macro372 #define MULTIPLIER short /* prefer 16-bit with SIMD for parellelism */ macro
66 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 */
71 constexpr auto MULTIPLIER = 1.6; variable85 util::int_pow(MULTIPLIER, std::min(MAX_BACKOFF_EXP, fail_count_)); in on_failure()
171 constexpr auto MULTIPLIER = 1.6; variable177 util::int_pow(MULTIPLIER, std::min(fail_count_, MAX_BACKOFF_EXP)); in schedule()
847 constexpr auto MULTIPLIER = 3.2; variable862 MULTIPLIER, in on_tls_ticket_key_network_error()
71 #define MULTIPLIER 10 /* Rate at which share value gets multiplied */ macro231 myshares = MULTIPLIER * myshares; in main()
70 #define MULTIPLIER 10 /* decides the rate at which share value gets multiplied */ macro218 myshares = MULTIPLIER * myshares; in main()
112 ; To maximize parallelism, Type MULTIPLIER is changed to short.