Searched defs:overflow (Results 1 - 25 of 90) sorted by relevance

1234

/external/compiler-rt/lib/ubsan/lit_tests/Misc/
H A Ddeduplication.cpp6 void overflow() { function
18 overflow();
19 overflow();
20 overflow();
/external/compiler-rt/lib/
H A Dmulodi4.c19 /* Effects: sets *overflow to 1 if a * b overflows */
22 __mulodi4(di_int a, di_int b, int* overflow) argument
27 *overflow = 0;
32 *overflow = 1;
38 *overflow = 1;
50 *overflow = 1;
55 *overflow = 1;
H A Dmulosi4.c19 /* Effects: sets *overflow to 1 if a * b overflows */
22 __mulosi4(si_int a, si_int b, int* overflow) argument
27 *overflow = 0;
32 *overflow = 1;
38 *overflow = 1;
50 *overflow = 1;
55 *overflow = 1;
H A Dmuloti4.c21 /* Effects: sets *overflow to 1 if a * b overflows */
24 __muloti4(ti_int a, ti_int b, int* overflow) argument
29 *overflow = 0;
34 *overflow = 1;
40 *overflow = 1;
52 *overflow = 1;
57 *overflow = 1;
/external/speex/include/speex/
H A Dspeex_bits.h55 int overflow;/**< Set to one if we try to read past the valid data */ member in struct:SpeexBits
/external/stlport/test/unit/
H A Dfull_streambuf.h26 int_type overflow(int_type c) { function in class:full_streambuf
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringConcatenate.h390 inline void sumWithOverflow(unsigned& total, unsigned addend, bool& overflow) argument
395 overflow = true;
404 bool overflow = false; local
406 sumWithOverflow(length, adapter2.length(), overflow);
407 if (overflow)
/external/chromium_org/v8/src/
H A Dconversions-inl.h175 int overflow = static_cast<int>(number >> 53); local
176 if (overflow != 0) {
180 while (overflow > 1) {
182 overflow >>= 1;
214 // Rounding up may cause overflow.
399 // will not overflow the multiplier, we stop parsing the part
660 // Check overflow.
/external/stlport/stlport/stl/
H A D_sstream.h82 virtual int_type overflow(int_type __c);
84 int_type overflow() {return overflow(_Traits::eof());} function in class:basic_stringbuf
H A D_streambuf.c99 else if (!_Traits::eq_int_type(this->overflow(_Traits::to_int_type(*__s)),
126 else if (!_Traits::eq_int_type(this->overflow(_Traits::to_int_type(__c)),
156 basic_streambuf<_CharT, _Traits>::overflow(int_type) { function in class:_Traits
/external/v8/src/
H A Dconversions-inl.h170 int overflow = static_cast<int>(number >> 53); local
171 if (overflow != 0) {
175 while (overflow > 1) {
177 overflow >>= 1;
209 // Rounding up may cause overflow.
398 // will not overflow the multiplier, we stop parsing the part
626 // Check overflow.
/external/bluetooth/bluedroid/stack/smp/
H A Dsmp_cmac.c97 UINT8 i, overflow = 0 , next_overflow = 0; local
103 output[i] = (input[i] << 1) | overflow;
104 overflow = next_overflow;
/external/chromium_org/base/
H A Dsys_info_android.cc72 bool overflow = result >= std::numeric_limits<int64>::max() / unit_multiplier; local
73 if (!parsed || negative || overflow)
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderOverflow.h31 // There are two types of overflow: layout overflow (which is expected to be reachable via scrolling mechanisms) and
32 // visual overflow (which is not expected to be reachable via scrolling mechanisms).
34 // Layout overflow examples include other boxes that spill out of our box, For example, in the inline case a tall image
37 // Examples of visual overflow are shadows, text stroke (and eventually outline and border-image).
53 void setMinYLayoutOverflow(LayoutUnit overflow) { m_layoutOverflow.setY(overflow); } argument
54 void setMaxYLayoutOverflow(LayoutUnit overflow) { m_layoutOverflow.setHeight(overflow - m_layoutOverflow.y()); } argument
55 void setMinXLayoutOverflow(LayoutUnit overflow) { m_layoutOverflo argument
56 setMaxXLayoutOverflow(LayoutUnit overflow) argument
58 setMinYVisualOverflow(LayoutUnit overflow) argument
59 setMaxYVisualOverflow(LayoutUnit overflow) argument
60 setMinXVisualOverflow(LayoutUnit overflow) argument
61 setMaxXVisualOverflow(LayoutUnit overflow) argument
[all...]
/external/srec/srec/cfront/
H A Dca_wave.c208 int overflow; local
216 &pc5, &pc95, &overflow);
229 if (overflow) *too_many_samples = ESR_TRUE;
H A Dwav_acc.c100 int *overflow)
117 *overflow = 0;
130 if (ws->nsam > OVERFLOW_MASK) *overflow = 1;
98 get_sig_check(wave_stats *ws, int *nsam, int *pclowclip, int *pchighclip, int *dc_offset, int *amp, int *pc5, int *pc95, int *overflow) argument
/external/stlport/src/
H A Dstdio_streambuf.cpp203 stdio_ostreambuf::int_type stdio_ostreambuf::overflow(int_type c) { function in class:stdio_ostreambuf
/external/zlib/src/contrib/iostream/
H A Dzfstream.cpp173 int gzfilebuf::overflow( int c ) { function in class:gzfilebuf
/external/zlib/src/contrib/iostream3/
H A Dzfstream.cc214 gzfilebuf::overflow(int_type c) function in class:gzfilebuf
301 return traits_type::eq_int_type(this->overflow(), traits_type::eof()) ? -1 : 0;
322 // so that overflow(c) can safely add the extra character c to the sequence.
/external/bison/lib/
H A Dstrtol.c248 int overflow; local
348 overflow = 0;
362 /* Check for overflow. */
364 overflow = 1;
384 if (overflow == 0
388 overflow = 1;
391 if (overflow)
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_chrome_shrinkable_hbox.cc71 // All children are right aligned, so make sure the child won't overflow
73 int overflow = (data->allocation->x + data->border_width + padding - local
75 if (overflow > 0) {
76 child_allocation.width -= overflow;
77 child_allocation.x += overflow;
80 // All children are left aligned, so make sure the child won't overflow
82 int overflow = (child_allocation.x + child_allocation.width + padding - local
84 if (overflow > 0)
85 child_allocation.width -= overflow;
/external/chromium_org/chrome/browser/ui/gtk/
H A Dgtk_chrome_shrinkable_hbox.cc65 // All children are right aligned, so make sure the child won't overflow
67 int overflow = (data->allocation->x + data->border_width + padding - local
69 if (overflow > 0) {
70 child_allocation.width -= overflow;
71 child_allocation.x += overflow;
74 // All children are left aligned, so make sure the child won't overflow
76 int overflow = (child_allocation.x + child_allocation.width + padding - local
78 if (overflow > 0)
79 child_allocation.width -= overflow;
/external/chromium_org/third_party/icu/source/common/
H A Ducnv_u16.c57 char overflow[4]; local
178 * prepare for overflow output
181 overflow[0]=(char)(c>>8);
182 overflow[1]=(char)c;
196 length=0; /* from here on, length counts the bytes in overflow[] */
209 /* output the surrogate pair, will overflow (see conditions comment above) */
211 overflow[0]=(char)(c>>8);
212 overflow[1]=(char)c;
213 overflow[2]=(char)(trail>>8);
214 overflow[
656 char overflow[4]; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_pipe_vbuf.c101 overflow( void *map, void *ptr, unsigned bytes, unsigned bufsz ) function
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/
H A Dpb_bufmgr_debug.c187 boolean underflow, overflow; local
199 overflow = !check_random_pattern(map + buf->underflow_size + buf->base.size,
202 if(overflow) {
203 debug_printf("buffer overflow (size %u plus offset %u to %u%s bytes) detected\n",
210 if(underflow || overflow)
214 debug_assert(!overflow);
219 if(overflow)

Completed in 778 milliseconds

1234