Searched refs:hi (Results 1 – 2 of 2) sorted by relevance
/math/ |
A D | mul_split.h | 33 *hi = x * y; in mul_split() 37 *hi = x * y; in mul_split() 57 *hi = a + b; in fast_two_sum() 58 e = *hi - a; /* exact */ in fast_two_sum() 72 mul_split (hi, lo, h1, h2); in mul_expansion() 75 fast_two_sum (hi, &e, *hi, r); in mul_expansion() 87 *hi = x / y; in div_split() 88 mul_split (&a, &b, *hi, y); in div_split() 105 div_split (hi, lo, h1, h2); in div_expansion() 109 fast_two_sum (hi, &e, *hi, r); in div_expansion() [all …]
|
A D | mul_splitl.h | 29 mul_splitl (long double *hi, long double *lo, long double x, long double y) in mul_splitl() argument 33 *hi = x * y; in mul_splitl() 34 *lo = __builtin_fmal (x, y, -*hi); in mul_splitl() 37 *hi = x * y; in mul_splitl() 46 *lo = (((x1 * y1 - *hi) + x1 * y2) + x2 * y1) + x2 * y2; in mul_splitl()
|
Completed in 3 milliseconds