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

123

/haiku-fatelf/src/bin/coreutils/lib/
H A Dxstrtol.c129 strtol_error overflow; local
164 overflow = bkm_scale (&tmp, 512);
168 overflow = bkm_scale (&tmp, 1024);
172 overflow = 0;
176 overflow = bkm_scale_by_power (&tmp, base, 6);
181 overflow = bkm_scale_by_power (&tmp, base, 3);
186 overflow = bkm_scale_by_power (&tmp, base, 1);
191 overflow = bkm_scale_by_power (&tmp, base, 2);
195 overflow = bkm_scale_by_power (&tmp, base, 5);
200 overflow
[all...]
H A Dxnanosleep.c51 /* For overflow checking, use naive comparison if possible, widening
58 bool overflow = ((time_t) ((double) TIME_T_MAX / 2) == TIME_T_MAX / 2 local
69 if (! overflow)
87 overflow = true;
98 if (overflow)
H A Dstrtod.c87 /* Make sure that multiplication by 16 will not overflow. */
91 This doesn't necessarily mean the result will overflow.
124 /* Make sure that multiplication by 10 will not overflow. */
128 This doesn't necessarily mean the result will overflow.
214 goto overflow;
236 checking for overflow and underflow. */
246 goto overflow;
256 overflow:
257 /* Return an overflow error. */
H A Dstrtol.c249 int overflow; local
349 overflow = 0;
363 /* Check for overflow. */
365 overflow = 1;
385 if (overflow == 0
389 overflow = 1;
392 if (overflow)
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dxstrtol.c129 strtol_error overflow; local
164 overflow = bkm_scale (&tmp, 512);
168 overflow = bkm_scale (&tmp, 1024);
172 overflow = 0;
176 overflow = bkm_scale_by_power (&tmp, base, 6);
181 overflow = bkm_scale_by_power (&tmp, base, 3);
186 overflow = bkm_scale_by_power (&tmp, base, 1);
191 overflow = bkm_scale_by_power (&tmp, base, 2);
195 overflow = bkm_scale_by_power (&tmp, base, 5);
200 overflow
[all...]
H A Dstrtol.c250 int overflow; local
350 overflow = 0;
364 /* Check for overflow. */
366 overflow = 1;
386 if (overflow == 0
390 overflow = 1;
393 if (overflow)
/haiku-fatelf/src/bin/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...]
H A Dstrtol.c272 int overflow; variable
372 overflow = 0;
386 /* Check for overflow. */
388 overflow = 1;
408 if (overflow == 0
412 overflow = 1;
415 if (overflow)
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dstrtol.c105 int overflow; local
152 overflow = 0;
173 /* Note that we never can have an overflow. */
176 /* We have an overflow. Now use the long representation. */
199 /* Check for overflow. */
201 overflow = 1;
222 if (overflow == 0
226 overflow = 1;
229 if (overflow)
H A Dstrtod.c98 /* Make sure that multiplication by 10 will not overflow. */
102 This doesn't necessarily mean the result will overflow.
147 goto overflow;
165 checking for overflow and underflow. */
175 goto overflow;
182 overflow:
183 /* Return an overflow error. */
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_create/
H A D1-5.c108 /* The overflow function is used to test the stack overflow */
109 void * overflow(void * arg) function
121 current = overflow(&current);
123 /* Terminate the overflow thread */
154 return overflow(arg);
234 ret = pthread_create(&th, &scenarii[sc].ta, overflow, NULL); /* Create a new thread with the same attributes */
/haiku-fatelf/src/libs/stdc++/legacy/
H A Dstdiostream.cc123 int stdiobuf::overflow(int c /* = EOF*/) function in class:stdiobuf
125 if (filebuf::overflow(c) == EOF)
H A Dindstream.cc57 int indirectbuf::overflow(int c /* = EOF */) function in class:indirectbuf
60 return put_stream()->overflow(c);
H A Dbuiltinbuf.cc32 int builtinbuf::overflow(int ch) { return _IO_OVERFLOW (this, ch); } function in class:builtinbuf
H A Dstreambuf.cc56 return sb->overflow(c);
65 int streambuf::overflow(int /* = EOF */) function in class:streambuf
139 { return ((streambuf*)fp)->overflow(c); }
189 JUMP_INIT(overflow, _IO_sb_overflow),
H A Dstrstream.cc64 int strstreambuf::overflow(int c /* = EOF */) function in class:strstreambuf
/haiku-fatelf/src/system/libroot/posix/glibc/stdlib/
H A Dstrtol.c240 int overflow; variable
379 overflow = 0;
421 /* Note that we never can have an overflow. */
424 /* We have an overflow. Now use the long representation. */
469 /* Check for overflow. */
471 overflow = 1;
492 if (overflow == 0
496 overflow = 1;
499 if (__builtin_expect (overflow, 0))
/haiku-fatelf/src/bin/gdb/bfd/
H A Dcpu-ns32k.c169 int overflow = 0; local
372 /* FIXME: This overflow checking is incomplete, because the value
377 FIXME: We should also do overflow checking on the result after
412 overflow if howto->bitsize is the number of bits in
424 overflow if howto->bitsize is the number of bits in
434 overflow. */
577 if ((howto->complain_on_overflow != complain_overflow_dont) && overflow)
597 bfd_boolean overflow; local
621 /* Check for overflow. FIXME: We may drop bits during the addition
625 overflow
[all...]
/haiku-fatelf/headers/cpp/
H A Dbuiltinbuf.h41 virtual int overflow(int);
H A Dindstream.h69 virtual int overflow(int c = EOF);
H A Dstdiostream.h52 virtual int overflow(int c = EOF);
/haiku-fatelf/src/add-ons/print/transports/shared/
H A DSocketStream.h18 virtual int overflow(int);
H A DSocketStream.cpp58 int socketstreambuf::overflow(int c) function in class:socketstreambuf
60 // cout << "***** overflow" << endl;
/haiku-fatelf/src/add-ons/translators/exr/openexr/half/
H A Dhalf.cpp70 // generates a hardware floating-point overflow,
75 half::overflow ()
80 f *= f; // this will overflow before
144 // Rounding may cause the significand to overflow and make
204 m = 0; // overflow in significand,
209 // Handle exponent overflow
214 overflow (); // Cause a hardware floating point overflow;
/haiku-fatelf/src/bin/coreutils/src/
H A Dtruncate.c159 _("overflow in %" PRIdMAX
179 /* overflow is the only reason I can think
199 uintmax_t const overflow = ((fsize + ssize - 1) / ssize) * ssize; local
200 if (overflow > OFF_T_MAX)
202 error (0, 0, _("overflow rounding up size of file %s"),
206 nsize = overflow;
212 error (0, 0, _("overflow extending size of file %s"),

Completed in 200 milliseconds

123