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

12

/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;
H A Dtruncdfsf2.c95 const src_rep_t overflow = (src_rep_t)overflowExponent << srcSigBits; local
106 if (aAbs - underflow < aAbs - overflow) {
133 else if (aAbs > overflow) {
/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/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
H A D_sstream.c142 __BSB_int_type__ basic_stringbuf<_CharT, _Traits, _Alloc>::overflow(int_type __c) function in class:_Alloc
/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/webkit/Source/WebCore/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)) {
/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/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
H A Dstrstream.cpp116 strstreambuf::int_type strstreambuf::overflow(int_type c) { function in class:strstreambuf
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringConcatenate.h187 inline void sumWithOverflow(unsigned& total, unsigned addend, bool& overflow) argument
192 overflow = true;
202 bool overflow = false; local
204 sumWithOverflow(length, adapter2.length(), overflow);
205 if (overflow)
227 bool overflow = false; local
229 sumWithOverflow(length, adapter2.length(), overflow);
230 sumWithOverflow(length, adapter3.length(), overflow);
231 if (overflow)
256 bool overflow local
289 bool overflow = false; local
326 bool overflow = false; local
367 bool overflow = false; local
412 bool overflow = false; local
461 bool overflow = false; local
[all...]
/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.c262 int overflow; local
362 overflow = 0;
376 /* Check for overflow. */
378 overflow = 1;
398 if (overflow == 0
402 overflow = 1;
405 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/icu4c/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/webkit/Source/JavaScriptCore/runtime/
H A DOperations.h170 bool overflow = false; local
181 overflow = true;
185 if (overflow)
216 bool overflow = false; local
227 overflow = true;
231 if (overflow)
/external/webkit/Source/WebCore/platform/graphics/
H A DBitmapImage.cpp161 bool overflow = updatedSize > m_decodedPropertiesSize && deltaBytes < 0; local
163 ASSERT(!overflow && !underflow);
/external/webkit/Source/WebCore/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).
67 void setMinYLayoutOverflow(int overflow) { m_minYLayoutOverflow = overflow; } argument
68 void setMaxYLayoutOverflow(int overflow) { m_maxYLayoutOverflow = overflow; } argument
69 void setMinXLayoutOverflow(int overflow) { m_minXLayoutOverflo argument
70 setMaxXLayoutOverflow(int overflow) argument
72 setMinYVisualOverflow(int overflow) argument
73 setMaxYVisualOverflow(int overflow) argument
74 setMinXVisualOverflow(int overflow) argument
75 setMaxXVisualOverflow(int overflow) argument
[all...]

Completed in 513 milliseconds

12