Searched refs:ULONG_MAX (Results 1 - 25 of 143) sorted by relevance

123456

/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dxstrtoul.c5 #define STRTOL_T_MAXIMUM ULONG_MAX
/macosx-10.10.1/tcl-105/tcl/tcl/compat/
H A Dstrtoul.c131 unsigned long maxres = ULONG_MAX >> 3;
140 if (digit > (ULONG_MAX - result)) { overflow = 1; }
145 unsigned long maxres = ULONG_MAX / 10;
154 if (digit > (ULONG_MAX - result)) { overflow = 1; }
159 unsigned long maxres = ULONG_MAX >> 4;
172 if (digit > (ULONG_MAX - result)) { overflow = 1; }
177 unsigned long maxres = ULONG_MAX / base;
190 if (digit > (ULONG_MAX - result)) { overflow = 1; }
211 return ULONG_MAX;
/macosx-10.10.1/tcl-105/tcl84/tcl/compat/
H A Dstrtoul.c137 unsigned long maxres = ULONG_MAX >> 3;
145 if (digit > (ULONG_MAX - result)) { overflow = 1; }
150 unsigned long maxres = ULONG_MAX / 10;
158 if (digit > (ULONG_MAX - result)) { overflow = 1; }
163 unsigned long maxres = ULONG_MAX >> 4;
175 if (digit > (ULONG_MAX - result)) { overflow = 1; }
180 unsigned long maxres = ULONG_MAX / base;
192 if (digit > (ULONG_MAX - result)) { overflow = 1; }
213 return ULONG_MAX;
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dstrtoul.c50 #ifndef ULONG_MAX
51 #define ULONG_MAX ((unsigned long)(~0L)) /* 0xFFFFFFFF */ macro
88 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
89 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
108 acc = ULONG_MAX;
H A Dstrtol.c69 #ifndef ULONG_MAX
70 #define ULONG_MAX ((unsigned long)(~0L)) /* 0xFFFFFFFF */ macro
74 #define LONG_MAX ((long)(ULONG_MAX >> 1)) /* 0x7FFFFFFF */
/macosx-10.10.1/bash-94.1.2/bash-3.2/include/
H A Dtypemax.h58 #ifndef ULONG_MAX
59 # define ULONG_MAX ((unsigned long) ~(unsigned long) 0) macro
63 # define LONG_MAX ((long int) (ULONG_MAX >> 1))
/macosx-10.10.1/xnu-2782.1.97/bsd/i386/
H A Dlimits.h56 * These numbers work for pcc as well. The UINT_MAX and ULONG_MAX values
75 #define ULONG_MAX 0xffffffffffffffffUL /* max unsigned long */ macro
79 #define ULONG_MAX 0xffffffffUL /* max unsigned long */ macro
98 #define SIZE_T_MAX ULONG_MAX /* max value for a size_t */
/macosx-10.10.1/objc4-646/runtime/
H A DNSObjCRuntime.h21 #define NSUIntegerMax ULONG_MAX
/macosx-10.10.1/xnu-2782.1.97/osfmk/i386/
H A Dmachlimits.h69 #define ULONG_MAX UINT_MAX /* max value for an unsigned long */ macro
/macosx-10.10.1/OpenSSL098-52/src/demos/tunala/
H A Dbreakage.c11 if(ret == ULONG_MAX)
26 if(ret && (((ULONG_MAX + 10) / ret) < 10))
/macosx-10.10.1/uucp-11/uucp/lib/
H A Dstrtol.c30 #define ULONG_MAX 4294967295 macro
113 cutoff = ULONG_MAX / (unsigned long int) base;
114 cutlim = ULONG_MAX % (unsigned long int) base;
161 return ULONG_MAX;
/macosx-10.10.1/BerkeleyDB-21/db/clib/
H A Dstrtoul.c89 cutoff = ULONG_MAX / base;
90 cutlim = ULONG_MAX % base;
111 acc = ULONG_MAX;
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dstrtoul.c79 cutoff = ULONG_MAX / (unsigned long)base;
80 cutlim = ULONG_MAX % (unsigned long)base;
94 acc = ULONG_MAX;
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/
H A Dstrtoul.c100 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
101 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
122 acc = ULONG_MAX;
/macosx-10.10.1/bind9-45.101/bind9/lib/lwres/
H A Dstrtoul.c106 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
107 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
128 acc = ULONG_MAX;
/macosx-10.10.1/ntp-92/lib/isc/
H A Dstrtoul.c100 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
101 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
122 acc = ULONG_MAX;
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/compat/libtiff/port/
H A Dstrtoul.c80 cutoff = ULONG_MAX / (unsigned long)base;
81 cutlim = (int)(ULONG_MAX % (unsigned long)base);
95 acc = ULONG_MAX;
/macosx-10.10.1/Libc-1044.1.2/locale/FreeBSD/
H A Dwcstoul.c82 cutoff = ULONG_MAX / base;
83 cutlim = ULONG_MAX % base;
109 acc = ULONG_MAX;
/macosx-10.10.1/Libc-1044.1.2/stdlib/FreeBSD/
H A Dstrtoul.c90 cutoff = ULONG_MAX / base;
91 cutlim = ULONG_MAX % base;
112 acc = ULONG_MAX;
/macosx-10.10.1/ruby-106/ruby/test/-ext-/num2int/
H A Dtest_num2int.rb20 ULONG_MAX = 4294967295
24 ULONG_MAX = 18446744073709551615
137 assert_output(ULONG_MAX.to_s) do
138 Num2int.print_num2ulong(ULONG_MAX)
140 assert_output(ULONG_MAX.to_s) do
150 Num2int.print_num2ulong(ULONG_MAX+1)
152 assert_output((ULONG_MAX-FIXNUM_MAX).to_s) do
155 assert_output((ULONG_MAX-FIXNUM_MAX-1).to_s) do
/macosx-10.10.1/bash-94.1.2/bash-3.2/lib/intl/
H A Dgmo.h60 # if ULONG_MAX == UINT_MAX_32_BITS
/macosx-10.10.1/cxxfilt-11/cxxfilt/intl/
H A Dgmo.h60 # if ULONG_MAX == UINT_MAX_32_BITS
/macosx-10.10.1/file_cmds-242/csh/
H A Dstrpct.c72 if (numerator < (ULONG_MAX / factor)) {
/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dsafe_ultostr.c55 /* be performed, and (ULONG_MAX, ERANGE) in case of overflow.
168 div_limit = ULONG_MAX / base;
169 mod_limit = ULONG_MAX % base;
184 /* Return (ULONG_MAX, ERANGE) if the result is too large. */
187 sum = ULONG_MAX;
245 if (*junk || (ulval2 == ULONG_MAX && errno == ERANGE))
/macosx-10.10.1/bash-94.1.2/bash-3.2/examples/loadables/
H A Dgetconf.h195 #ifndef ULONG_MAX
196 # define ULONG_MAX 4294967295UL macro

Completed in 557 milliseconds

123456