<div dir="ltr"><div>We could just grab from NetBSD7.  Or if we know it's an IEEE754 float, just do the direct bit ops.  Or the direct fp cpu op.<br><br></div>..m<br></div><br><div class="gmail_quote"><div dir="ltr">On Wed, Sep 13, 2017 at 4:05 PM Gary E. Miller via devel <<a href="mailto:devel@ntpsec.org">devel@ntpsec.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Yo Mark!<br>
<br>
On Wed, 13 Sep 2017 22:31:31 +0000<br>
Mark Atwood via devel <<a href="mailto:devel@ntpsec.org" target="_blank">devel@ntpsec.org</a>> wrote:<br>
<br>
> How much complexity would it add to add the missing fp functions in<br>
> the same way the strlcpy function is?<br>
<br>
I think all we need for NetBSD 6.1 is ldexpl().<br>
<br>
Here is one way, a very slow way, to do it:<br>
<br>
long double ldexpl(long double value, int e)<br>
{<br>
  if (value == 0 || value == INFINITY || value == -INFINITY || value != value)<br>
  {<br>
    // Return +0.0/-0.0, +INF/-INF and NaN as-is<br>
  }<br>
  else<br>
  {<br>
    while (e > 0)<br>
      value = value * 2, e--;<br>
    while (e < 0)<br>
      value = value * 0.5f, e++; // won't round denormals correctly<br>
  }<br>
  return value;<br>
}<br>
<br>
Ripped from:<br>
<br>
<a href="https://github.com/alexfru/SmallerC/blob/master/v0100/srclib/ldexp.c" rel="noreferrer" target="_blank">https://github.com/alexfru/SmallerC/blob/master/v0100/srclib/ldexp.c</a><br>
<br>
NTPsec only uses 32 and -32 values for 'e', so some simplification<br>
possible.<br>
<br>
The INF tests should likely be replaced with isfinite().<br>
<br>
RGDS<br>
GARY<br>
---------------------------------------------------------------------------<br>
Gary E. Miller Rellim 109 NW Wilmington Ave., Suite E, Bend, OR 97703<br>
        <a href="mailto:gem@rellim.com" target="_blank">gem@rellim.com</a>  Tel:<a href="tel:(541)%20382-8588" value="+15413828588" target="_blank">+1 541 382 8588</a><br>
<br>
            Veritas liberabit vos. -- Quid est veritas?<br>
    "If you can’t measure it, you can’t improve it." - Lord Kelvin<br>
_______________________________________________<br>
devel mailing list<br>
<a href="mailto:devel@ntpsec.org" target="_blank">devel@ntpsec.org</a><br>
<a href="http://lists.ntpsec.org/mailman/listinfo/devel" rel="noreferrer" target="_blank">http://lists.ntpsec.org/mailman/listinfo/devel</a></blockquote></div><div dir="ltr">-- <br></div><div class="gmail_signature" data-smartmail="gmail_signature"><p dir="ltr">Mark Atwood<br>
<a href="http://about.me/markatwood">http://about.me/markatwood</a><br>
+1-206-604-2198 Mobile & Signal</p>
</div>