Searched refs:overflow (Results 1 - 25 of 204) sorted by relevance

123456789

/macosx-10.9.5/tcl-102/tcl/tcl/compat/
H A Dstrtoul.c73 int overflow=0;
138 if (result > maxres) { overflow = 1; }
140 if (digit > (ULONG_MAX - result)) { overflow = 1; }
152 if (result > maxres) { overflow = 1; }
154 if (digit > (ULONG_MAX - result)) { overflow = 1; }
170 if (result > maxres) { overflow = 1; }
172 if (digit > (ULONG_MAX - result)) { overflow = 1; }
188 if (result > maxres) { overflow = 1; }
190 if (digit > (ULONG_MAX - result)) { overflow = 1; }
209 if (overflow) {
72 int overflow=0; local
[all...]
/macosx-10.9.5/tcl-102/tcl84/tcl/compat/
H A Dstrtoul.c77 int overflow=0;
143 if (result > maxres) { overflow = 1; }
145 if (digit > (ULONG_MAX - result)) { overflow = 1; }
156 if (result > maxres) { overflow = 1; }
158 if (digit > (ULONG_MAX - result)) { overflow = 1; }
173 if (result > maxres) { overflow = 1; }
175 if (digit > (ULONG_MAX - result)) { overflow = 1; }
190 if (result > maxres) { overflow = 1; }
192 if (digit > (ULONG_MAX - result)) { overflow = 1; }
211 if (overflow) {
76 int overflow=0; local
[all...]
H A Dstrtoull.c154 goto overflow;
158 goto overflow;
170 goto overflow;
174 goto overflow;
190 goto overflow;
194 goto overflow;
210 goto overflow;
214 goto overflow;
243 * On overflow generate the right output
246 overflow
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DtextPrompt.css46 overflow-x: hidden;
47 overflow-y: auto;
54 overflow: hidden;
55 text-overflow: ellipsis;
H A DbreakpointsList.css59 text-overflow: ellipsis;
60 overflow: hidden;
79 text-overflow: ellipsis;
80 overflow: hidden;
/macosx-10.9.5/gnudiff-19/diffutils/lib/
H A Dxstrtol.c168 int overflow; local
203 overflow = bkm_scale (&tmp, 512);
207 overflow = bkm_scale (&tmp, 1024);
211 overflow = 0;
215 overflow = bkm_scale_by_power (&tmp, base, 6);
220 overflow = bkm_scale_by_power (&tmp, base, 3);
225 overflow = bkm_scale_by_power (&tmp, base, 1);
230 overflow = bkm_scale_by_power (&tmp, base, 2);
234 overflow = bkm_scale_by_power (&tmp, base, 5);
239 overflow
[all...]
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dxstrtol.c130 strtol_error overflow; local
165 overflow = bkm_scale (&tmp, 512);
169 overflow = bkm_scale (&tmp, 1024);
173 overflow = 0;
177 overflow = bkm_scale_by_power (&tmp, base, 6);
182 overflow = bkm_scale_by_power (&tmp, base, 3);
187 overflow = bkm_scale_by_power (&tmp, base, 1);
192 overflow = bkm_scale_by_power (&tmp, base, 2);
196 overflow = bkm_scale_by_power (&tmp, base, 5);
201 overflow
[all...]
/macosx-10.9.5/text_cmds-87/sort/
H A Dxstrtol.c153 strtol_error overflow; local
188 overflow = bkm_scale (&tmp, 512);
192 overflow = bkm_scale (&tmp, 1024);
196 overflow = 0;
200 overflow = bkm_scale_by_power (&tmp, base, 6);
205 overflow = bkm_scale_by_power (&tmp, base, 3);
210 overflow = bkm_scale_by_power (&tmp, base, 1);
215 overflow = bkm_scale_by_power (&tmp, base, 2);
219 overflow = bkm_scale_by_power (&tmp, base, 5);
224 overflow
[all...]
/macosx-10.9.5/curl-78.94.1/curl/lib/
H A Dstrtoofft.c59 int overflow; local
109 overflow = 0;
116 overflow = 1;
123 if(!overflow) {
/macosx-10.9.5/WebCore-7537.78.1/Resources/blackberry/
H A DselectControlBlackBerry.css5 overflow-x: hidden;
6 overflow-y: auto;
20 overflow: hidden;
21 text-overflow: -blackberry-fade;
69 overflow: hidden;
H A DtimeControlBlackBerry.css14 overflow: hidden;
61 overflow: hidden;
/macosx-10.9.5/uucp-11/uucp/lib/
H A Dstrtol.c63 int overflow; local
116 overflow = 0;
130 /* Check for overflow. */
132 overflow = 1;
154 overflow = 1;
157 if (overflow)
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dstrtol.c104 int overflow; local
151 overflow = 0;
172 /* Note that we never can have an overflow. */
175 /* We have an overflow. Now use the long representation. */
198 /* Check for overflow. */
200 overflow = 1;
221 if (overflow == 0
225 overflow = 1;
228 if (overflow)
H A Dstrtod.c94 /* Make sure that multiplication by 10 will not overflow. */
98 This doesn't necessarily mean the result will overflow.
143 goto overflow;
161 checking for overflow and underflow. */
171 goto overflow;
178 overflow:
179 /* Return an overflow error. */
/macosx-10.9.5/WebCore-7537.78.1/css/
H A Dsvg.css33 which does not use CSS layout [CSS2-LAYOUT] or XSL formatting [XSL], the 'overflow' property on the
38 [CSS2-LAYOUT] or XSL formatting [XSL], if the 'overflow' property has the value hidden or scroll, then
40 the initial clipping path is set according to the clipping rules as defined in [CSS2-overflow].
42 Opera/Firefox & WebKit agreed on NOT setting "overflow: hidden" for the outermost svg element - SVG 1.1 Errata
47 overflow: hidden
H A DthemeBlackBerry.css64 overflow-y: scroll;
65 overflow-x: hidden;
80 text-overflow: -blackberry-fade;
81 overflow: hidden;
94 text-overflow: -blackberry-fade;
95 overflow: hidden;
H A DplugIns.css77 overflow: hidden;
79 text-overflow: ellipsis;
/macosx-10.9.5/adv_cmds-153/colldef/
H A Dscan.l68 errx(EX_UNAVAILABLE, "string buffer overflow near line %u, character '<'",
183 errx(EX_UNAVAILABLE, "name buffer overflow near line %u, character '/'",
189 errx(EX_UNAVAILABLE, "name buffer overflow near line %u, character '>'",
195 errx(EX_UNAVAILABLE, "string buffer overflow near line %u, character '\"'",
233 errx(EX_UNAVAILABLE, "string buffer overflow near line %u, character <%s>",
262 errx(EX_UNAVAILABLE, "map/name buffer overflow near line %u of %s, character '%c'",
268 errx(EX_UNAVAILABLE, "string buffer overflow near line %u, character '\\t'",
274 errx(EX_UNAVAILABLE, "string buffer overflow near line %u, character '\\b'",
280 errx(EX_UNAVAILABLE, "string buffer overflow near line %u, character '\\f'",
286 errx(EX_UNAVAILABLE, "string buffer overflow nea
[all...]
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dstrtoi.h45 * errno=ERANGE on overflow (LONG_MAX) or underflow (LONG_MIN)
244 int overflow = 0; local
347 overflow = 1;
353 overflow = 1;
370 if (overflow)
406 overflow = 1;
411 overflow = 1;
420 overflow = 1;
425 overflow = 1;
520 overflow
[all...]
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/cm/
H A Dcodemirror.css10 overflow: auto;
104 overflow: hidden;
111 /* See overflow: hidden in .CodeMirror, and the paddings in .CodeMirror-sizer */
132 overflow-x: hidden;
133 overflow-y: scroll;
137 overflow-y: hidden;
138 overflow-x: scroll;
181 overflow: visible;
197 overflow: auto;
205 overflow
[all...]
/macosx-10.9.5/WebCore-7537.78.1/storage/
H A DStorageMap.cpp115 // Quota tracking. This is done in a couple of steps to keep the overflow tracking simple.
117 bool overflow = newLength + value.length() < newLength; local
121 overflow |= newLength - oldValue.length() > newLength;
125 overflow |= newLength + adjustedKeyLength < newLength;
128 ASSERT(!overflow); // Overflow is bad...even if quotas are off.
130 if (m_quotaSize != noQuota && (overflow || overQuota)) {
/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Dmep-relocs.pl137 $overflow = $sign[$i];
138 $overflow = 'N' if $attrs[$i] =~ /no-overflow/;
142 $c, $bytesize, $bits, $left, $right, $pcrel, $overflow, $mask);
164 if ($attrs[$i] !~ /no-overflow/ && $bits[$i] < 32) {
/macosx-10.9.5/procmail-14/procmail/src/
H A Dcstdio.c141 { int i,overflow=0;char*q; local
145 return overflow?-1:p!=q; /* did we read anything at all? */
148 q=p,overflow=1;
194 { char*chp2;int overflow; local
195 for(overflow=0;;*target++='\n')
197 { case -1:overflow=1;
203 target=end-linebuf,overflow=1; /* toss what we have */
207 if(overflow)
210 return overflow;
/macosx-10.9.5/CommonCrypto-60049/lib/
H A DCommonCMAC.c44 uint8_t overflow = 0; local
48 output[i] |= overflow;
49 overflow = (input[i] & 0x80)?1:0;
/macosx-10.9.5/groff-38/groff/src/roff/troff/
H A Dnumber.cpp295 int overflow = 0; local
329 overflow = 1;
333 overflow = 1;
335 if (overflow) {
336 error("addition overflow");
344 overflow = 1;
348 overflow = 1;
350 if (overflow) {
351 error("subtraction overflow");
360 overflow
[all...]

Completed in 492 milliseconds

123456789