Searched refs:DoublePack (Results 1 – 3 of 3) sorted by relevance
/external/vixl/src/ |
D | utils-vixl.cc | 103 double DoublePack(uint64_t sign, uint64_t exp, uint64_t mantissa) { in DoublePack() function
|
D | utils-vixl.h | 289 double DoublePack(uint64_t sign, uint64_t exp, uint64_t mantissa); 294 return DoublePack(sign, exp, mantissa); in double_pack()
|
/external/vixl/src/aarch64/ |
D | logic-aarch64.cc | 4658 scaled = DoublePack(0, 1022, Bits(fraction, 51, 44) << 44); in FPRecipSqrtEstimate() 4660 scaled = DoublePack(0, 1021, Bits(fraction, 51, 44) << 44); in FPRecipSqrtEstimate() 4676 return DoublePack(0, Bits(result_exp, 10, 0), Bits(estimate, 51, 0)); in FPRecipSqrtEstimate() 4747 return DoublePack(sign, 0x7fe, 0x0fffffffffffffl); in FPRecipEstimate() 4775 double scaled = DoublePack(0, 1022, Bits(fraction, 51, 44) << 44); in FPRecipEstimate() 4797 return DoublePack(sign, Bits(result_exp, 10, 0), Bits(fraction, 51, 0)); in FPRecipEstimate() 4900 result = DoublePack(sign, exp, 0); in frecpx()
|