HomeSort by relevance Sort by last modified time
    Searched defs:overflow (Results 76 - 100 of 147) sorted by null

1 2 34 5 6

  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_sstream.h 82 virtual int_type overflow(int_type __c);
84 int_type overflow() {return overflow(_Traits::eof());} function in class:basic_stringbuf
_streambuf.c 99 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
  /dalvik/vm/
Profile.h 51 int overflow; member in struct:MethodTraceState
  /external/bluetooth/bluedroid/stack/smp/
smp_cmac.c 97 UINT8 i, overflow = 0 , next_overflow = 0; local
103 output[i] = (input[i] << 1) | overflow;
104 overflow = next_overflow;
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_shrinkable_hbox.cc 71 // 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/guava/guava/src/com/google/common/primitives/
UnsignedLongs.java 283 * unsigned long. This is useful for detecting overflow while parsing a string representation of
357 BigInteger overflow = new BigInteger("10000000000000000", 16); typedefs
361 maxSafeDigits[i] = overflow.toString(i).length() - 1;
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedIntsTest.java 130 // tests that we get exception whre an overflow would occur.
131 long overflow = 1L << 32; local
132 String overflowAsString = Long.toString(overflow, radix);
UnsignedLongsTest.java 125 // tests that we get exception whre an overflow would occur.
126 BigInteger overflow = max.add(ONE); local
127 String overflowAsString = overflow.toString(radix);
  /external/stlport/src/
strstream.cpp 116 strstreambuf::int_type strstreambuf::overflow(int_type c) { function in class:strstreambuf
  /external/webkit/Source/JavaScriptCore/runtime/
Operations.h 170 bool overflow = false; local
181 overflow = true;
185 if (overflow)
216 bool overflow = false; local
227 overflow = true;
231 if (overflow)
  /external/zlib/src/contrib/iostream/
zfstream.cpp 173 int gzfilebuf::overflow( int c ) { function in class:gzfilebuf
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
dec_amr.h 41 Description: Update function prototype for Decoder_amr(). Include overflow
157 Flag overflow; member in struct:Decoder_amrState
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
cod_amr.h 41 Description: Added overflow flag as an element to the cod_amrState data
170 /* Overflow flag */
171 Flag overflow; member in struct:__anon19283
  /ndk/sources/cxx-stl/llvm-libc++/src/
strstream.cpp 151 strstreambuf::overflow(int_type __c) function in class:strstreambuf
  /ndk/sources/cxx-stl/stlport/src/
strstream.cpp 116 strstreambuf::int_type strstreambuf::overflow(int_type c) { function in class:strstreambuf
  /system/core/run-as/
package.c 49 * 'dstlen' is 0, even in case of overflow.
383 int overflow = 0; local
400 overflow = 1;
406 if (overflow) {
  /external/bison/lib/
strtol.c 248 int overflow; local
348 overflow = 0;
362 /* Check for overflow. */
364 overflow = 1;
384 if (overflow == 0
388 overflow = 1;
391 if (overflow)
  /external/compiler-rt/lib/
truncdfsf2.c 95 const src_rep_t overflow = (src_rep_t)overflowExponent << srcSigBits; local
106 if (aAbs - underflow < aAbs - overflow) {
133 else if (aAbs > overflow) {
  /external/icu4c/common/
ucnv_u16.c 57 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[3]=(char)trail
656 char overflow[4]; local
    [all...]
  /external/stlport/stlport/stl/
_fstream.c 85 __ok = __ok && !_Traits::eq_int_type(this->overflow(traits_type::eof()),
208 basic_filebuf<_CharT, _Traits>::overflow(int_type __c) { function in class:_Traits
404 return traits_type::eq_int_type(this->overflow(traits_type::eof()),
628 // basic_filebuf<>::overflow() for the reason.)
639 //We first check that the streamsize representation can't overflow a size_t one.
707 bool __ok = !traits_type::eq_int_type(this->overflow(traits_type::eof()),
_sstream.c 142 __BSB_int_type__ basic_stringbuf<_CharT, _Traits, _Alloc>::overflow(int_type __c) function in class:_Alloc
163 return _Traits::eof(); // Overflow always fails if it's read-only
  /external/webkit/Source/WebCore/platform/graphics/
BitmapImage.cpp 161 bool overflow = updatedSize > m_decodedPropertiesSize && deltaBytes < 0; local
163 ASSERT(!overflow && !underflow);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_fstream.c 85 __ok = __ok && !_Traits::eq_int_type(this->overflow(traits_type::eof()),
208 basic_filebuf<_CharT, _Traits>::overflow(int_type __c) { function in class:_Traits
404 return traits_type::eq_int_type(this->overflow(traits_type::eof()),
628 // basic_filebuf<>::overflow() for the reason.)
639 //We first check that the streamsize representation can't overflow a size_t one.
707 bool __ok = !traits_type::eq_int_type(this->overflow(traits_type::eof()),
_sstream.c 142 __BSB_int_type__ basic_stringbuf<_CharT, _Traits, _Alloc>::overflow(int_type __c) function in class:_Alloc
163 return _Traits::eof(); // Overflow always fails if it's read-only
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_fstream.c 85 __ok = __ok && !_Traits::eq_int_type(this->overflow(traits_type::eof()),
208 basic_filebuf<_CharT, _Traits>::overflow(int_type __c) { function in class:_Traits
404 return traits_type::eq_int_type(this->overflow(traits_type::eof()),
628 // basic_filebuf<>::overflow() for the reason.)
639 //We first check that the streamsize representation can't overflow a size_t one.
707 bool __ok = !traits_type::eq_int_type(this->overflow(traits_type::eof()),

Completed in 1617 milliseconds

1 2 34 5 6