OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [newlib/] [newlib/] [libc/] [stdlib/] [div.c] - Diff between revs 39 and 56

Go to most recent revision | Show entire file | Details | Blame | View Log

Rev 39 Rev 56
Line 96... Line 96...
        r.rem = num % denom;
        r.rem = num % denom;
        /*
        /*
         * The ANSI standard says that |r.quot| <= |n/d|, where
         * The ANSI standard says that |r.quot| <= |n/d|, where
         * n/d is to be computed in infinite precision.  In other
         * n/d is to be computed in infinite precision.  In other
         * words, we should always truncate the quotient towards
         * words, we should always truncate the quotient towards
         * 0, never -infinity.
         * 0, never -infinity or +infinity.
         *
         *
         * Machine division and remainer may work either way when
         * Machine division and remainer may work either way when
         * one or both of n or d is negative.  If only one is
         * one or both of n or d is negative.  If only one is
         * negative and r.quot has been truncated towards -inf,
         * negative and r.quot has been truncated towards -inf,
         * r.rem will have the same sign as denom and the opposite
         * r.rem will have the same sign as denom and the opposite
Line 114... Line 114...
         *
         *
         * This all boils down to:
         * This all boils down to:
         *      if num >= 0, but r.rem < 0, we got the wrong answer.
         *      if num >= 0, but r.rem < 0, we got the wrong answer.
         * In that case, to get the right answer, add 1 to r.quot and
         * In that case, to get the right answer, add 1 to r.quot and
         * subtract denom from r.rem.
         * subtract denom from r.rem.
 
         *      if num < 0, but r.rem > 0, we also have the wrong answer.
 
         * In this case, to get the right answer, subtract 1 from r.quot and
 
         * add denom to r.rem.
         */
         */
        if (num >= 0 && r.rem < 0) {
        if (num >= 0 && r.rem < 0) {
                r.quot++;
                ++r.quot;
                r.rem -= denom;
                r.rem -= denom;
        }
        }
 
        else if (num < 0 && r.rem > 0) {
 
                --r.quot;
 
                r.rem += denom;
 
        }
        return (r);
        return (r);
}
}
 
 
 No newline at end of file
 No newline at end of file

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.