Home
last modified time | relevance | path

Searched refs:op_32 (Results 1 – 1 of 1) sorted by relevance

/frameworks/libs/binary_translation/intrinsics/include/berberis/intrinsics/
Dintrinsics_floating_point_impl.h300 uint32_t op_32 = bit_cast<uint32_t>(op); in RSqrtEstimate() local
301 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()