Home
last modified time | relevance | path

Searched refs:mul (Results 1 – 5 of 5) sorted by relevance

/dpdk/lib/eal/include/
H A Drte_common.h375 #define RTE_ALIGN_MUL_CEIL(v, mul) \ argument
376 ((((v) + (typeof(v))(mul) - 1) / ((typeof(v))(mul))) * (typeof(v))(mul))
383 #define RTE_ALIGN_MUL_FLOOR(v, mul) \ argument
384 (((v) / ((typeof(v))(mul))) * (typeof(v))(mul))
391 #define RTE_ALIGN_MUL_NEAR(v, mul) \ argument
393 typeof(v) ceil = RTE_ALIGN_MUL_CEIL(v, mul); \
394 typeof(v) floor = RTE_ALIGN_MUL_FLOOR(v, mul); \
/dpdk/drivers/common/cnxk/
H A Droc_aes.c85 uint8_t pow, mul = 0; in GF8mul() local
89 mul ^= Xtime(byte, pow); in GF8mul()
92 return mul; in GF8mul()
H A Droc_mbox.h1483 uint64_t __io mul : 1; member
/dpdk/drivers/net/enic/base/
H A Dvnic_dev.c32 uint32_t mul; member
1077 vdev->intr_coal_timer_info.mul = 2; in vnic_dev_intr_coal_timer_info_default()
1118 return (usec * vdev->intr_coal_timer_info.mul) / in vnic_dev_intr_coal_timer_usec_to_hw()
1126 vdev->intr_coal_timer_info.mul; in vnic_dev_intr_coal_timer_hw_to_usec()
/dpdk/drivers/crypto/cnxk/
H A Dcnxk_cryptodev_capabilities.c1114 CPT_CAPS_ADD(cnxk_caps, &cur_pos, hw_caps, mul); in crypto_caps_populate()