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

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
divsf3.c 81 uint32_t q31b = bSignificand << 8; local in function:__divsf3
82 uint32_t reciprocal = UINT32_C(0x7504f333) - q31b;
92 correction = -((uint64_t)reciprocal * q31b >> 32);
94 correction = -((uint64_t)reciprocal * q31b >> 32);
96 correction = -((uint64_t)reciprocal * q31b >> 32);
divdf3.c 81 const uint32_t q31b = bSignificand >> 21; local in function:__divdf3
82 uint32_t recip32 = UINT32_C(0x7504f333) - q31b;
92 correction32 = -((uint64_t)recip32 * q31b >> 32);
94 correction32 = -((uint64_t)recip32 * q31b >> 32);
96 correction32 = -((uint64_t)recip32 * q31b >> 32);
109 correction = -((uint64_t)recip32*q31b + ((uint64_t)recip32*q63blo >> 32));

Completed in 12 milliseconds