os/ossrv/ossrv_pub/boost_apis/boost/integer.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//  boost integer.hpp header file  -------------------------------------------//
sl@0
     2
sl@0
     3
//  Copyright Beman Dawes and Daryle Walker 1999.  Distributed under the Boost
sl@0
     4
//  Software License, Version 1.0. (See accompanying file
sl@0
     5
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     6
sl@0
     7
//  See http://www.boost.org/libs/integer for documentation.
sl@0
     8
sl@0
     9
//  Revision History
sl@0
    10
//   22 Sep 01  Added value-based integer templates. (Daryle Walker)
sl@0
    11
//   01 Apr 01  Modified to use new <boost/limits.hpp> header. (John Maddock)
sl@0
    12
//   30 Jul 00  Add typename syntax fix (Jens Maurer)
sl@0
    13
//   28 Aug 99  Initial version
sl@0
    14
sl@0
    15
#ifndef BOOST_INTEGER_HPP
sl@0
    16
#define BOOST_INTEGER_HPP
sl@0
    17
sl@0
    18
#include <boost/integer_fwd.hpp>  // self include
sl@0
    19
sl@0
    20
#include <boost/integer_traits.hpp>  // for boost::integer_traits
sl@0
    21
#include <boost/limits.hpp>          // for std::numeric_limits
sl@0
    22
sl@0
    23
namespace boost
sl@0
    24
{
sl@0
    25
sl@0
    26
  //  Helper templates  ------------------------------------------------------//
sl@0
    27
sl@0
    28
  //  fast integers from least integers
sl@0
    29
  //  int_fast_t<> works correctly for unsigned too, in spite of the name.
sl@0
    30
  template< typename LeastInt >
sl@0
    31
  struct int_fast_t { typedef LeastInt fast; }; // imps may specialize
sl@0
    32
sl@0
    33
  //  convert category to type 
sl@0
    34
  template< int Category > struct int_least_helper {}; // default is empty
sl@0
    35
sl@0
    36
  //  specializatons: 1=long, 2=int, 3=short, 4=signed char,
sl@0
    37
  //     6=unsigned long, 7=unsigned int, 8=unsigned short, 9=unsigned long
sl@0
    38
  //  no specializations for 0 and 5: requests for a type > long are in error
sl@0
    39
  template<> struct int_least_helper<1> { typedef long least; };
sl@0
    40
  template<> struct int_least_helper<2> { typedef int least; };
sl@0
    41
  template<> struct int_least_helper<3> { typedef short least; };
sl@0
    42
  template<> struct int_least_helper<4> { typedef signed char least; };
sl@0
    43
  template<> struct int_least_helper<6> { typedef unsigned long least; };
sl@0
    44
  template<> struct int_least_helper<7> { typedef unsigned int least; };
sl@0
    45
  template<> struct int_least_helper<8> { typedef unsigned short least; };
sl@0
    46
  template<> struct int_least_helper<9> { typedef unsigned char least; };
sl@0
    47
sl@0
    48
  //  integer templates specifying number of bits  ---------------------------//
sl@0
    49
sl@0
    50
  //  signed
sl@0
    51
  template< int Bits >   // bits (including sign) required
sl@0
    52
  struct int_t 
sl@0
    53
  {
sl@0
    54
      typedef typename int_least_helper
sl@0
    55
        <
sl@0
    56
          (Bits-1 <= std::numeric_limits<long>::digits) +
sl@0
    57
          (Bits-1 <= std::numeric_limits<int>::digits) +
sl@0
    58
          (Bits-1 <= std::numeric_limits<short>::digits) +
sl@0
    59
          (Bits-1 <= std::numeric_limits<signed char>::digits)
sl@0
    60
        >::least  least;
sl@0
    61
      typedef typename int_fast_t<least>::fast  fast;
sl@0
    62
  };
sl@0
    63
sl@0
    64
  //  unsigned
sl@0
    65
  template< int Bits >   // bits required
sl@0
    66
  struct uint_t 
sl@0
    67
  {
sl@0
    68
      typedef typename int_least_helper
sl@0
    69
        < 
sl@0
    70
          5 +
sl@0
    71
          (Bits <= std::numeric_limits<unsigned long>::digits) +
sl@0
    72
          (Bits <= std::numeric_limits<unsigned int>::digits) +
sl@0
    73
          (Bits <= std::numeric_limits<unsigned short>::digits) +
sl@0
    74
          (Bits <= std::numeric_limits<unsigned char>::digits)
sl@0
    75
        >::least  least;
sl@0
    76
      typedef typename int_fast_t<least>::fast  fast;
sl@0
    77
      // int_fast_t<> works correctly for unsigned too, in spite of the name.
sl@0
    78
  };
sl@0
    79
sl@0
    80
  //  integer templates specifying extreme value  ----------------------------//
sl@0
    81
sl@0
    82
  //  signed
sl@0
    83
  template< long MaxValue >   // maximum value to require support
sl@0
    84
  struct int_max_value_t 
sl@0
    85
  {
sl@0
    86
      typedef typename int_least_helper
sl@0
    87
        <
sl@0
    88
          (MaxValue <= integer_traits<long>::const_max) +
sl@0
    89
          (MaxValue <= integer_traits<int>::const_max) +
sl@0
    90
          (MaxValue <= integer_traits<short>::const_max) +
sl@0
    91
          (MaxValue <= integer_traits<signed char>::const_max)
sl@0
    92
        >::least  least;
sl@0
    93
      typedef typename int_fast_t<least>::fast  fast;
sl@0
    94
  };
sl@0
    95
sl@0
    96
  template< long MinValue >   // minimum value to require support
sl@0
    97
  struct int_min_value_t 
sl@0
    98
  {
sl@0
    99
      typedef typename int_least_helper
sl@0
   100
        <
sl@0
   101
          (MinValue >= integer_traits<long>::const_min) +
sl@0
   102
          (MinValue >= integer_traits<int>::const_min) +
sl@0
   103
          (MinValue >= integer_traits<short>::const_min) +
sl@0
   104
          (MinValue >= integer_traits<signed char>::const_min)
sl@0
   105
        >::least  least;
sl@0
   106
      typedef typename int_fast_t<least>::fast  fast;
sl@0
   107
  };
sl@0
   108
sl@0
   109
  //  unsigned
sl@0
   110
  template< unsigned long Value >   // maximum value to require support
sl@0
   111
  struct uint_value_t 
sl@0
   112
  {
sl@0
   113
      typedef typename int_least_helper
sl@0
   114
        < 
sl@0
   115
          5 +
sl@0
   116
          (Value <= integer_traits<unsigned long>::const_max) +
sl@0
   117
          (Value <= integer_traits<unsigned int>::const_max) +
sl@0
   118
          (Value <= integer_traits<unsigned short>::const_max) +
sl@0
   119
          (Value <= integer_traits<unsigned char>::const_max)
sl@0
   120
        >::least  least;
sl@0
   121
      typedef typename int_fast_t<least>::fast  fast;
sl@0
   122
  };
sl@0
   123
sl@0
   124
sl@0
   125
} // namespace boost
sl@0
   126
sl@0
   127
#endif  // BOOST_INTEGER_HPP