Lines Matching defs:recip32
82 uint32_t recip32 = UINT32_C(0x7504f333) - q31b;
92 correction32 = -((uint64_t)recip32 * q31b >> 32);
93 recip32 = (uint64_t)recip32 * correction32 >> 31;
94 correction32 = -((uint64_t)recip32 * q31b >> 32);
95 recip32 = (uint64_t)recip32 * correction32 >> 31;
96 correction32 = -((uint64_t)recip32 * q31b >> 32);
97 recip32 = (uint64_t)recip32 * correction32 >> 31;
99 // recip32 might have overflowed to exactly zero in the preceding
102 // recip32 downward by one bit.
103 recip32--;
109 correction = -((uint64_t)recip32*q31b + ((uint64_t)recip32*q63blo >> 32));
112 reciprocal = (uint64_t)recip32*cHi + ((uint64_t)recip32*cLo >> 32);