HomeSort by: relevance | last modified time | path
    Searched defs:high_addend (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/
floatditf.c 18 const double high_addend = (double)((int32_t)(a >> 32))*twop32 - twop52; local in function:__floatditf
21 * high_addend and low.d, and we wish to return their sum
31 result.s.hi = high_addend + low.d;
32 result.s.lo = (high_addend - result.s.hi) + low.d;
floatunditf.c 24 const double high_addend = high.d - twop84_plus_twop52; local in function:__floatunditf
27 * high_addend and low.d, and we wish to return their sum
36 result.s.hi = high_addend + low.d;
37 result.s.lo = (high_addend - result.s.hi) + low.d;

Completed in 12 milliseconds