This file is indexed.

/usr/include/gecode/int/limits.hpp is in libgecode-dev 4.4.0-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
/*
 *  Main authors:
 *     Christian Schulte <schulte@gecode.org>
 *
 *  Copyright:
 *     Christian Schulte, 2005
 *
 *  Last modified:
 *     $Date: 2013-02-14 16:29:11 +0100 (Thu, 14 Feb 2013) $ by $Author: schulte $
 *     $Revision: 13292 $
 *
 *  This file is part of Gecode, the generic constraint
 *  development environment:
 *     http://www.gecode.org
 *
 *  Permission is hereby granted, free of charge, to any person obtaining
 *  a copy of this software and associated documentation files (the
 *  "Software"), to deal in the Software without restriction, including
 *  without limitation the rights to use, copy, modify, merge, publish,
 *  distribute, sublicense, and/or sell copies of the Software, and to
 *  permit persons to whom the Software is furnished to do so, subject to
 *  the following conditions:
 *
 *  The above copyright notice and this permission notice shall be
 *  included in all copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 */

namespace Gecode { namespace Int {

  inline bool
  Limits::valid(int n) {
    return ((n >= min) && (n <= max));
  }
  inline bool
  Limits::valid(long long int n) {
    return ((n >= min) && (n <= max));
  }
  
  inline void
  Limits::check(int n, const char* l) {
    if ((n < min) || (n > max))
      throw OutOfLimits(l);
  }
  inline void
  Limits::check(long long int n, const char* l) {
    if ((n < min) || (n > max))
      throw OutOfLimits(l);
  }
  
  inline void
  Limits::positive(int n, const char* l) {
    if ((n <= 0) || (n > max))
      throw OutOfLimits(l);
  }
  inline void
  Limits::positive(long long int n, const char* l) {
    if ((n <= 0.0) || (n > max))
      throw OutOfLimits(l);
  }
  
  inline void
  Limits::nonnegative(int n, const char* l) {
    if ((n < 0) || (n > max))
      throw OutOfLimits(l);
  }
  inline void
  Limits::nonnegative(long long int n, const char* l) {
    if ((n < 0.0) || (n > max))
      throw OutOfLimits(l);
  }
  
  forceinline bool
  Limits::overflow_add(int n, int m) {
    long long int nm = 
      static_cast<long long int>(n) + static_cast<long long int>(m);
    return (nm > INT_MAX) || (nm < INT_MIN+1);
  }
  forceinline bool
  Limits::overflow_add(long long int n, long long int m) {
    if (m < 0)
      return n < LLONG_MIN + 1 - m;
    else
      return n > LLONG_MAX - m;
  }

  forceinline bool
  Limits::overflow_sub(int n, int m) {
    long long int nm = 
      static_cast<long long int>(n) - static_cast<long long int>(m);
    return (nm > INT_MAX) || (nm < INT_MIN+1);
  }
  forceinline bool
  Limits::overflow_sub(long long int n, long long int m) {
    if (m < 0)
      return n > LLONG_MAX + m;
    else
      return n < LLONG_MIN + 1 + m;
  }

  inline bool
  Limits::overflow_mul(int n, int m) {
    long long int nm = 
      static_cast<long long int>(n) * static_cast<long long int>(m);
    return (nm > INT_MAX) || (nm < INT_MIN+1);
  }

  inline bool
  Limits::overflow_mul(long long int n, long long int m) {
    // Check whether we can at least change the sign
    if ((n == LLONG_MIN) || (m == LLONG_MIN))
      return false;

    unsigned long long int un = 
      static_cast<unsigned long long int>(n < 0 ? -n : n);
    unsigned long long int um = 
      static_cast<unsigned long long int>(m < 0 ? -m : m);

    const unsigned int k = CHAR_BIT * sizeof(int);

    unsigned long long int un_hi = un >> k; 
    unsigned long long int un_lo = un & ((1ULL << k) - 1ULL);
    unsigned long long int um_hi = um >> k; 
    unsigned long long int um_lo = um & ((1ULL << k) - 1ULL);

    // This would mean that there is something larger than 2^64
    if ((un_hi != 0ULL) && (um_hi != 0ULL))
      return true;

    unsigned long long int unm_hi = 0ULL;

    // Now, either un_hi or m_hi can be different from zero
    if (un_hi != 0ULL)
      unm_hi = un_hi * um_lo;
    else if (um_hi != 0ULL)
      unm_hi = um_hi * un_lo;
    else
      return false;
    
    // Again, something larger than 2^64
    if ((unm_hi >> k) != 0ULL)
      return true;
    unm_hi <<= k;

    unsigned long long int unm_lo = un_lo * um_lo;

    return unm_hi > static_cast<unsigned long long int>(LLONG_MAX) - unm_lo;
  }

}}

// STATISTICS: int-var