Searched refs:DoublePack (Results 1 – 3 of 3) sorted by relevance
/external/vixl/src/ |
D | utils-vixl.cc | 162 double DoublePack(uint64_t sign, uint64_t exp, uint64_t mantissa) { in DoublePack() function
|
D | utils-vixl.h | 352 double DoublePack(uint64_t sign, uint64_t exp, uint64_t mantissa); 357 return DoublePack(sign, exp, mantissa); in double_pack()
|
/external/vixl/src/aarch64/ |
D | logic-aarch64.cc | 4985 scaled = DoublePack(0, 1022, Bits(fraction, 51, 44) << 44); in FPRecipSqrtEstimate() 4987 scaled = DoublePack(0, 1021, Bits(fraction, 51, 44) << 44); in FPRecipSqrtEstimate() 5011 return DoublePack(0, Bits(result_exp, 10, 0), Bits(estimate, 51, 0)); in FPRecipSqrtEstimate() 5092 return DoublePack(sign, 0x7fe, 0x0fffffffffffffl); in FPRecipEstimate() 5126 double scaled = DoublePack(0, 1022, Bits(fraction, 51, 44) << 44); in FPRecipEstimate() 5156 return DoublePack(sign, Bits(result_exp, 10, 0), Bits(fraction, 51, 0)); in FPRecipEstimate() 5270 result = DoublePack(sign, exp, 0); in frecpx()
|