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.h376 double DoublePack(uint64_t sign, uint64_t exp, uint64_t mantissa);
381 return DoublePack(sign, exp, mantissa); in double_pack()
/external/vixl/src/aarch64/
Dlogic-aarch64.cc5939 scaled = DoublePack(0, 1022, Bits(fraction, 51, 44) << 44); in FPRecipSqrtEstimate()
5941 scaled = DoublePack(0, 1021, Bits(fraction, 51, 44) << 44); in FPRecipSqrtEstimate()
5965 return DoublePack(0, Bits(result_exp, 10, 0), Bits(estimate, 51, 0)); in FPRecipSqrtEstimate()
6046 return DoublePack(sign, 0x7fe, 0x0fffffffffffffl); in FPRecipEstimate()
6080 double scaled = DoublePack(0, 1022, Bits(fraction, 51, 44) << 44); in FPRecipEstimate()
6110 return DoublePack(sign, Bits(result_exp, 10, 0), Bits(fraction, 51, 0)); in FPRecipEstimate()
6265 result = DoublePack(sign, exp, 0); in frecpx()