Searched refs:op_32 (Results 1 – 1 of 1) sorted by relevance
300 uint32_t op_32 = bit_cast<uint32_t>(op); in RSqrtEstimate() local301 op_32 &= ~0xffff; in RSqrtEstimate()302 op_32 += 0x8000; in RSqrtEstimate()303 Float32 fp32 = bit_cast<Float32>(op_32); in RSqrtEstimate()305 op_32 = bit_cast<uint32_t>(fp32); in RSqrtEstimate()306 op_32 += 0x4000; in RSqrtEstimate()307 op_32 &= ~0x7fff; in RSqrtEstimate()308 return bit_cast<Float32>(op_32); in RSqrtEstimate()