Home
last modified time | relevance | path

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

/lib/math/
A Dtest_div64.c65 u64 quotient; member
227 static inline bool test_div64_verify(u64 quotient, u32 remainder, int i, int j) in test_div64_verify() argument
229 return (quotient == test_div64_results[i][j].quotient && in test_div64_verify()
240 u64 quotient; \
243 quotient = dividend; \
244 remainder = do_div(quotient, divisor); \
245 if (!test_div64_verify(quotient, remainder, i, j)) { \
247 dividend, divisor, quotient, remainder); \
249 test_div64_results[i][j].quotient, \
A Ddiv64.c70 u64 quotient; in div_s64_rem() local
73 quotient = div_u64_rem(-dividend, abs(divisor), (u32 *)remainder); in div_s64_rem()
76 quotient = -quotient; in div_s64_rem()
78 quotient = div_u64_rem(dividend, abs(divisor), (u32 *)remainder); in div_s64_rem()
80 quotient = -quotient; in div_s64_rem()
82 return quotient; in div_s64_rem()

Completed in 3 milliseconds