Searched refs:result_lo (Results 1 – 1 of 1) sorted by relevance
72 uint64_t tmp, remainder, result_lo; in rounded_udiv_128_by_48() local79 result_lo = tmp / div; in rounded_udiv_128_by_48()83 result_lo = (result_lo << 16) + (tmp / div); in rounded_udiv_128_by_48()87 result_lo = (result_lo << 16) + (tmp / div); in rounded_udiv_128_by_48()91 result_lo = (result_lo << 16) + (tmp / div); in rounded_udiv_128_by_48()95 if (remainder * 2 >= div && ++result_lo == 0) in rounded_udiv_128_by_48()98 return result_lo; in rounded_udiv_128_by_48()108 uint64_t result_lo, result_hi; in rounded_sdiv_128_by_49() local123 result_lo = rounded_udiv_128_by_48 (hi, lo, div, &result_hi); in rounded_sdiv_128_by_49()126 if (result_lo != 0) in rounded_sdiv_128_by_49()[all …]