File: rounding-mode.h

package info (click to toggle)
glibc 2.24-10
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 223,412 kB
  • sloc: ansic: 991,967; asm: 261,800; sh: 10,385; makefile: 9,710; cpp: 4,169; python: 3,971; perl: 2,254; awk: 1,753; pascal: 1,521; yacc: 291; sed: 80
file content (65 lines) | stat: -rw-r--r-- 2,293 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/* Handle floating-point rounding mode within libc.
   Copyright (C) 2012-2016 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <http://www.gnu.org/licenses/>.  */

#ifndef _ROUNDING_MODE_H
#define _ROUNDING_MODE_H	1

#include <fenv.h>
#include <stdbool.h>
#include <stdlib.h>

/* Get the architecture-specific definition of how to determine the
   rounding mode in libc.  This header must also define the FE_*
   macros for any standard rounding modes the architecture does not
   have in <fenv.h>, to arbitrary distinct values.  */
#include <get-rounding-mode.h>

/* Return true if a number should be rounded away from zero in
   rounding mode MODE, false otherwise.  NEGATIVE is true if the
   number is negative, false otherwise.  LAST_DIGIT_ODD is true if the
   last digit of the truncated value (last bit for binary) is odd,
   false otherwise.  HALF_BIT is true if the number is at least half
   way from the truncated value to the next value with the
   least-significant digit in the same place, false otherwise.
   MORE_BITS is true if the number is not exactly equal to the
   truncated value or the half-way value, false otherwise.  */

static bool
round_away (bool negative, bool last_digit_odd, bool half_bit, bool more_bits,
	    int mode)
{
  switch (mode)
    {
    case FE_DOWNWARD:
      return negative && (half_bit || more_bits);

    case FE_TONEAREST:
      return half_bit && (last_digit_odd || more_bits);

    case FE_TOWARDZERO:
      return false;

    case FE_UPWARD:
      return !negative && (half_bit || more_bits);

    default:
      abort ();
    }
}

#endif /* rounding-mode.h */