Searched refs:quot (Results 1 – 2 of 2) sorted by relevance
547 const uint16_t quot = (uint16_t)(num_vmdq_queues / num_cores); in lcore_main() local553 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()
254 unsigned int quot = x / denom; in mult_frac() local257 return (quot * numer) + ((rem * numer) / denom); in mult_frac()