dhcpd-pools
3.0
ISC dhcpd lease usage analyser
Main Page
+
Data Structures
Data Structures
Data Structure Index
+
Data Fields
+
All
_
a
b
c
d
e
f
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Functions
+
Variables
_
a
b
c
d
e
f
h
i
l
m
n
o
p
q
r
s
t
u
v
w
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
x
+
Variables
a
c
d
e
f
g
i
l
m
n
o
p
q
s
x
+
Typedefs
_
c
d
g
m
r
s
v
w
Enumerations
+
Enumerator
a
b
c
d
e
f
h
i
l
m
n
o
p
q
r
s
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
•
All
Classes
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
lib
limits.h
Go to the documentation of this file.
1
/* DO NOT EDIT! GENERATED AUTOMATICALLY! */
2
/* A GNU-like <limits.h>.
3
4
Copyright 2016-2017 Free Software Foundation, Inc.
5
6
This program is free software; you can redistribute it and/or
7
modify it under the terms of the GNU General Public License
8
as published by the Free Software Foundation; either version 3, or
9
(at your option) any later version.
10
11
This program is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
GNU General Public License for more details.
15
16
You should have received a copy of the GNU General Public License
17
along with this program; if not, see <https://www.gnu.org/licenses/>. */
18
19
#ifndef _GL_LIMITS_H
20
21
#if __GNUC__ >= 3
22
#pragma GCC system_header
23
#endif
24
25
26
/* The include_next requires a split double-inclusion guard. */
27
#include_next <limits.h>
28
29
#ifndef _GL_LIMITS_H
30
#define _GL_LIMITS_H
31
32
/* For HP-UX 11.31. */
33
#if defined LONG_LONG_MIN && !defined LLONG_MIN
34
# define LLONG_MIN LONG_LONG_MIN
35
#endif
36
#if defined LONG_LONG_MAX && !defined LLONG_MAX
37
# define LLONG_MAX LONG_LONG_MAX
38
#endif
39
#if defined ULONG_LONG_MAX && !defined ULLONG_MAX
40
# define ULLONG_MAX ULONG_LONG_MAX
41
#endif
42
43
/* The number of usable bits in an unsigned or signed integer type
44
with minimum value MIN and maximum value MAX, as an int expression
45
suitable in #if. Cover all known practical hosts. This
46
implementation exploits the fact that MAX is 1 less than a power of
47
2, and merely counts the number of 1 bits in MAX; "COBn" means
48
"count the number of 1 bits in the low-order n bits"). */
49
#define _GL_INTEGER_WIDTH(min, max) (((min) < 0) + _GL_COB128 (max))
50
#define _GL_COB128(n) (_GL_COB64 ((n) >> 31 >> 31 >> 2) + _GL_COB64 (n))
51
#define _GL_COB64(n) (_GL_COB32 ((n) >> 31 >> 1) + _GL_COB32 (n))
52
#define _GL_COB32(n) (_GL_COB16 ((n) >> 16) + _GL_COB16 (n))
53
#define _GL_COB16(n) (_GL_COB8 ((n) >> 8) + _GL_COB8 (n))
54
#define _GL_COB8(n) (_GL_COB4 ((n) >> 4) + _GL_COB4 (n))
55
#define _GL_COB4(n) (!!((n) & 8) + !!((n) & 4) + !!((n) & 2) + !!((n) & 1))
56
57
/* Macros specified by ISO/IEC TS 18661-1:2014. */
58
59
#if (! defined ULLONG_WIDTH \
60
&& (defined _GNU_SOURCE || defined __STDC_WANT_IEC_60559_BFP_EXT__))
61
# define CHAR_WIDTH _GL_INTEGER_WIDTH (CHAR_MIN, CHAR_MAX)
62
# define SCHAR_WIDTH _GL_INTEGER_WIDTH (SCHAR_MIN, SCHAR_MAX)
63
# define UCHAR_WIDTH _GL_INTEGER_WIDTH (0, UCHAR_MAX)
64
# define SHRT_WIDTH _GL_INTEGER_WIDTH (SHRT_MIN, SHRT_MAX)
65
# define USHRT_WIDTH _GL_INTEGER_WIDTH (0, USHRT_MAX)
66
# define INT_WIDTH _GL_INTEGER_WIDTH (INT_MIN, INT_MAX)
67
# define UINT_WIDTH _GL_INTEGER_WIDTH (0, UINT_MAX)
68
# define LONG_WIDTH _GL_INTEGER_WIDTH (LONG_MIN, LONG_MAX)
69
# define ULONG_WIDTH _GL_INTEGER_WIDTH (0, ULONG_MAX)
70
# define LLONG_WIDTH _GL_INTEGER_WIDTH (LLONG_MIN, LLONG_MAX)
71
# define ULLONG_WIDTH _GL_INTEGER_WIDTH (0, ULLONG_MAX)
72
#endif
/* !ULLONG_WIDTH && (_GNU_SOURCE || __STDC_WANT_IEC_60559_BFP_EXT__) */
73
74
#endif
/* _GL_LIMITS_H */
75
#endif
/* _GL_LIMITS_H */
Generated on Wed Nov 15 2017 12:55:25 for dhcpd-pools by
1.8.13