And that's all I was after

If it matters to you (and it may conceivably not), that seems not quite the same as the split that the hardware double-double implementations produce.
On my double-double (PowerPC) box, for your given 32-digit value of
3.1415926535897932384626433832795
the 2 doubles would there round out as
3.14159265358979e+000 and 1.22464679914735e-016
with actual hex representations of
0x1.921fb54442d18p+1 and 0x1.1a62633145c07p-53.

Those 2 hex values concatenate to the correct 107-bit representation of the original value:
0.11001001000011111101101010100010001000010110100011000010001101001100 +010011000110011000101000101110000000111E2
Cheers,
Rob

In reply to Re^5: Math::BigFloat to native double? by syphilis
in thread Math::BigFloat to native double? by BrowserUk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.