| /f-stack/freebsd/contrib/openzfs/module/zcommon/ |
| H A D | cityhash.c | 42 cityhash_helper(uint64_t u, uint64_t v, uint64_t mul) in cityhash_helper() argument 44 uint64_t a = (u ^ v) * mul; in cityhash_helper() 46 uint64_t b = (v ^ a) * mul; in cityhash_helper() 48 b *= mul; in cityhash_helper() 55 uint64_t mul = HASH_K2 + 64; in cityhash4() local 58 uint64_t c = w4 * mul; in cityhash4() 61 a + rotate(b + HASH_K2, 18) + c, mul)); in cityhash4()
|
| /f-stack/freebsd/crypto/openssl/aarch64/ |
| H A D | armv8-mont.S | 105 mul x15,x6,x4 296 mul x15,x8,x6 297 mul x16,x9,x6 324 mul x17,x9,x7 474 mul x14,x6,x4 476 mul x15,x7,x4 478 mul x16,x8,x4 479 mul x17,x9,x4 576 mul x8,x9,x9 607 mul x6,x7,x7 [all …]
|
| H A D | ecp_nistz256-armv8.S | 3673 mul x8,x4,x3 3675 mul x9,x5,x3 3678 mul x10,x6,x3 3680 mul x11,x7,x3 3715 mul x8,x4,x3 3717 mul x9,x5,x3 3720 mul x10,x6,x3 3722 mul x11,x7,x3 3757 mul x8,x4,x3 3759 mul x9,x5,x3 [all …]
|
| H A D | poly1305-armv8.S | 91 mul x12,x4,x7 // h0*r0 95 mul x10,x5,x9 // h1*5*r1 99 mul x10,x4,x8 // h0*r1 104 mul x10,x5,x7 // h1*r0 109 mul x10,x6,x9 // h2*5*r1 111 mul x11,x6,x7 // h2*r0 165 mul x12,x4,x7 // h0*r0 168 mul x10,x5,x9 // h1*5*r1 172 mul x10,x4,x8 // h0*r1 177 mul x10,x5,x7 // h1*r0 [all …]
|
| /f-stack/freebsd/arm64/qoriq/clk/ |
| H A D | qoriq_clk_pll.c | 76 uint32_t mul; in qoriq_clk_pll_recalc_freq() local 80 RD4(clk, sc->offset, &mul); in qoriq_clk_pll_recalc_freq() 82 if (sc->flags & QORIQ_CLK_PLL_HAS_KILL_BIT && mul & QORIQ_PLL_KILL_BIT) in qoriq_clk_pll_recalc_freq() 85 mul &= sc->mask; in qoriq_clk_pll_recalc_freq() 86 mul >>= sc->shift; in qoriq_clk_pll_recalc_freq() 88 *freq = *freq * mul; in qoriq_clk_pll_recalc_freq()
|
| /f-stack/freebsd/contrib/dpdk_rte_lpm/ |
| H A D | rte_common.h | 291 #define RTE_ALIGN_MUL_CEIL(v, mul) \ argument 292 (((v + (typeof(v))(mul) - 1) / ((typeof(v))(mul))) * (typeof(v))(mul)) 299 #define RTE_ALIGN_MUL_FLOOR(v, mul) \ argument 300 ((v / ((typeof(v))(mul))) * (typeof(v))(mul)) 307 #define RTE_ALIGN_MUL_NEAR(v, mul) \ argument 309 typeof(v) ceil = RTE_ALIGN_MUL_CEIL(v, mul); \ 310 typeof(v) floor = RTE_ALIGN_MUL_FLOOR(v, mul); \
|
| /f-stack/dpdk/lib/librte_eal/include/ |
| H A D | rte_common.h | 330 #define RTE_ALIGN_MUL_CEIL(v, mul) \ argument 331 ((((v) + (typeof(v))(mul) - 1) / ((typeof(v))(mul))) * (typeof(v))(mul)) 338 #define RTE_ALIGN_MUL_FLOOR(v, mul) \ argument 339 (((v) / ((typeof(v))(mul))) * (typeof(v))(mul)) 346 #define RTE_ALIGN_MUL_NEAR(v, mul) \ argument 348 typeof(v) ceil = RTE_ALIGN_MUL_CEIL(v, mul); \ 349 typeof(v) floor = RTE_ALIGN_MUL_FLOOR(v, mul); \
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | vdev_raidz_math_impl.h | 274 const unsigned mul = *((unsigned *)private); in raidz_mul_abd_cb() local 282 MUL(mul, MUL_D); in raidz_mul_abd_cb() 286 MUL(mul, MUL_D); in raidz_mul_abd_cb() 854 const unsigned *mul) in raidz_rec_pq_abd() argument 876 MUL(mul[MUL_PQ_X], REC_PQ_X); in raidz_rec_pq_abd() 877 MUL(mul[MUL_PQ_Y], REC_PQ_Y); in raidz_rec_pq_abd() 1015 const unsigned *mul) in raidz_rec_pr_abd() argument 1036 MUL(mul[MUL_PR_X], REC_PR_X); in raidz_rec_pr_abd() 1037 MUL(mul[MUL_PR_Y], REC_PR_Y); in raidz_rec_pr_abd() 1179 const unsigned *mul) in raidz_rec_qr_abd() argument [all …]
|
| H A D | abd.c | 1135 const unsigned *mul), in abd_raidz_rec_iterate() argument 1136 const unsigned *mul) in abd_raidz_rec_iterate() 1200 func_raidz_rec(xaddrs, len, caddrs, mul); in abd_raidz_rec_iterate()
|
| /f-stack/freebsd/tools/sound/ |
| H A D | feeder_eq_mkfilter.awk | 236 function feedeq_calc_preamp(norm, gain, shift, mul, bit, attn) 242 mul = 1; 247 mul = floor((attn * FEEDEQ_PREAMP_ONE) + 0.5); 250 while ((mul % 2) == 0 && shift > 0) { 251 mul = floor(mul / 2); 255 norm["mul"] = mul;
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | util.c | 200 long mul; /* unit multiplier */ in memtoll() local 211 mul = 1; in memtoll() 213 mul = 1000; in memtoll() 215 mul = 1024; in memtoll() 217 mul = 1000*1000; in memtoll() 219 mul = 1024*1024; in memtoll() 221 mul = 1000L*1000*1000; in memtoll() 223 mul = 1024L*1024*1024; in memtoll() 246 return val*mul; in memtoll()
|
| /f-stack/freebsd/net80211/ |
| H A D | ieee80211_node.h | 317 #define IEEE80211_RSSI_EP_RND(x, mul) \ argument 318 ((((x) % (mul)) >= ((mul)/2)) ? ((x) + ((mul) - 1)) / (mul) : (x)/(mul))
|
| /f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/ |
| H A D | fe51_nsquare.S | 49 mul %rcx label 54 mul %r8 label 70 mul %r8 label
|
| /f-stack/freebsd/contrib/openzfs/include/sys/ |
| H A D | abd.h | 98 const unsigned *mul), 99 const unsigned *mul);
|
| /f-stack/freebsd/contrib/openzfs/module/icp/include/modes/ |
| H A D | gcm_impl.h | 51 gcm_mul_f mul; member
|
| /f-stack/freebsd/contrib/openzfs/module/icp/algs/modes/ |
| H A D | gcm_pclmulqdq.c | 59 .mul = &gcm_pclmulqdq_mul,
|
| H A D | gcm_generic.c | 80 .mul = &gcm_generic_mul,
|
| /f-stack/freebsd/mips/mediatek/ |
| H A D | mtk_soc.c | 194 uint32_t val, mul, div, res; in mtk_detect_cpuclk_mt7620() local 204 mul = MT7620_PLL_MULT_RATIO_BASE + ((val >> MT7620_PLL_MULT_RATIO_OFF) & in mtk_detect_cpuclk_mt7620() 213 res = (MT7620_XTAL_40 * mul) / div; in mtk_detect_cpuclk_mt7620()
|
| /f-stack/freebsd/arm/mv/armadaxp/ |
| H A D | mptramp.S | 48 mul r2, r0, r1
|
| /f-stack/freebsd/contrib/device-tree/Bindings/nios2/ |
| H A D | nios2.txt | 26 - altr,has-mul: Specifies CPU hardware multipy support, should be 1. 56 altr,has-mul = <1>;
|
| /f-stack/freebsd/contrib/device-tree/Bindings/iio/afe/ |
| H A D | current-sense-amplifier.txt | 25 sense-gain-mul = <50>;
|
| /f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/ |
| H A D | ar9300_ani.c | 64 #define HAL_EP_RND(x, mul) \ argument 65 ((((x) % (mul)) >= ((mul) / 2)) ? ((x) + ((mul) - 1)) / (mul) : (x) / (mul))
|
| /f-stack/freebsd/contrib/device-tree/src/nios2/ |
| H A D | 3c120_devboard.dts | 37 altr,has-mul = <1>;
|
| /f-stack/dpdk/drivers/net/enic/base/ |
| H A D | vnic_dev.c | 32 uint32_t mul; member 1066 vdev->intr_coal_timer_info.mul = 2; in vnic_dev_intr_coal_timer_info_default() 1107 return (usec * vdev->intr_coal_timer_info.mul) / in vnic_dev_intr_coal_timer_usec_to_hw() 1115 vdev->intr_coal_timer_info.mul; in vnic_dev_intr_coal_timer_hw_to_usec()
|
| /f-stack/freebsd/contrib/octeon-sdk/ |
| H A D | cvmx-spxx-defs.h | 800 uint64_t mul : 1; /**< Multiple errors have occured */ member 810 uint64_t mul : 1;
|