Home
last modified time | relevance | path

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

/external/vixl/src/
Dutils-vixl.cc162 double DoublePack(uint64_t sign, uint64_t exp, uint64_t mantissa) { in DoublePack() function
Dutils-vixl.h352 double DoublePack(uint64_t sign, uint64_t exp, uint64_t mantissa);
357 return DoublePack(sign, exp, mantissa); in double_pack()
/external/vixl/src/aarch64/
Dlogic-aarch64.cc4985 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()