Searched refs:quot (Results 1 – 2 of 2) sorted by relevance
552 const uint16_t quot = (uint16_t)(num_vmdq_queues / num_cores); in lcore_main() local558 startQueue = (uint16_t)(core_num * (quot + 1)); in lcore_main()559 endQueue = (uint16_t)(startQueue + quot + 1); in lcore_main()561 startQueue = (uint16_t)(core_num * quot + remainder); in lcore_main()562 endQueue = (uint16_t)(startQueue + quot); in lcore_main()565 startQueue = (uint16_t)(core_num * quot); in lcore_main()566 endQueue = (uint16_t)(startQueue + quot); in lcore_main()
255 unsigned int quot = x / denom; in mult_frac() local258 return (quot * numer) + ((rem * numer) / denom); in mult_frac()