Home
last modified time | relevance | path

Searched refs:quot (Results 1 – 2 of 2) sorted by relevance

/dpdk/examples/vmdq_dcb/
H A Dmain.c547 const uint16_t quot = (uint16_t)(num_vmdq_queues / num_cores); in lcore_main() local
553 startQueue = (uint16_t)(core_num * (quot + 1)); in lcore_main()
554 endQueue = (uint16_t)(startQueue + quot + 1); in lcore_main()
556 startQueue = (uint16_t)(core_num * quot + remainder); in lcore_main()
557 endQueue = (uint16_t)(startQueue + quot); in lcore_main()
560 startQueue = (uint16_t)(core_num * quot); in lcore_main()
561 endQueue = (uint16_t)(startQueue + quot); in lcore_main()
/dpdk/drivers/net/cxgbe/
H A Dcxgbe_compat.h254 unsigned int quot = x / denom; in mult_frac() local
257 return (quot * numer) + ((rem * numer) / denom); in mult_frac()