HomeSort by relevance Sort by last modified time
    Searched refs:q31b (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/builtins/
divdf3.c 83 const uint32_t q31b = bSignificand >> 21; local
84 uint32_t recip32 = UINT32_C(0x7504f333) - q31b;
94 correction32 = -((uint64_t)recip32 * q31b >> 32);
96 correction32 = -((uint64_t)recip32 * q31b >> 32);
98 correction32 = -((uint64_t)recip32 * q31b >> 32);
111 correction = -((uint64_t)recip32*q31b + ((uint64_t)recip32*q63blo >> 32));
divsf3.c 83 uint32_t q31b = bSignificand << 8; local
84 uint32_t reciprocal = UINT32_C(0x7504f333) - q31b;
94 correction = -((uint64_t)reciprocal * q31b >> 32);
96 correction = -((uint64_t)reciprocal * q31b >> 32);
98 correction = -((uint64_t)reciprocal * q31b >> 32);

Completed in 100 milliseconds