HomeSort by relevance Sort by last modified time
    Searched defs:overflow (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/stlport/test/unit/
full_streambuf.h 26 int_type overflow(int_type c) { function in class:full_streambuf
  /ndk/sources/android/stlport/test/unit/
full_streambuf.h 26 int_type overflow(int_type c) { function in class:full_streambuf
  /external/speex/include/speex/
speex_bits.h 55 int overflow;/**< Set to one if we try to read past the valid data */ member in struct:SpeexBits
  /sdk/emulator/qtools/
hist_trace.cpp 9 int underflow, overflow; variable
41 overflow += 1;
60 per = 100.0 * overflow / total;
61 printf("over: %6d %6.2f\n", overflow, per);
  /external/srec/srec/cfront/
ca_wave.c 208 int overflow; local
216 &pc5, &pc95, &overflow);
229 if (overflow) *too_many_samples = ESR_TRUE;
  /external/stlport/src/
stdio_streambuf.cpp 203 stdio_ostreambuf::int_type stdio_ostreambuf::overflow(int_type c) { function in class:stdio_ostreambuf
strstream.cpp 116 strstreambuf::int_type strstreambuf::overflow(int_type c) { function in class:strstreambuf
  /external/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
  /external/webkit/WebCore/storage/
StorageMap.cpp 115 // 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/zlib/contrib/iostream3/
zfstream.cc 214 gzfilebuf::overflow(int_type c) function in class:gzfilebuf
230 // Overflow doesn't fail if nothing is to be written
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.
  /ndk/sources/android/stlport/src/
stdio_streambuf.cpp 203 stdio_ostreambuf::int_type stdio_ostreambuf::overflow(int_type c) { function in class:stdio_ostreambuf
strstream.cpp 116 strstreambuf::int_type strstreambuf::overflow(int_type c) { function in class:strstreambuf
  /ndk/sources/android/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
  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharsetDecoder.java 73 return overflow(in);
80 return overflow(in);
95 return overflow(in);
103 private CoderResult overflow(ByteBuffer in) { method in class:UTF7StyleCharsetDecoder
105 return CoderResult.OVERFLOW;
  /external/zlib/contrib/iostream/
zfstream.cpp 173 int gzfilebuf::overflow( int c ) { function in class:gzfilebuf
  /frameworks/base/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/base/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:__anon9348
  /system/core/run-as/
package.c 51 * 'dstlen' is 0, even in case of overflow.
331 int overflow = 0; local
348 overflow = 1;
354 if (overflow) {
  /bionic/libc/unistd/
sysconf.c 274 int overflow; member in struct:__anon541
287 p->overflow = 0;
300 if (p->overflow) {
301 p->overflow = (c == '\n');
305 p->overflow = 1;
  /dalvik/vm/
Profile.h 60 int overflow; member in struct:MethodTraceState
  /external/bison/lib/
strtol.c 262 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/third_party/icu/source/common/
caniter.cpp 532 UBool overflow = FALSE; local
556 U16_APPEND(buff, bufLen, bufSize, cp, overflow);
558 if(overflow) {
560 * ### TODO handle buffer overflow
561 * The buffer is large, but an overflow may still happen with
567 overflow = FALSE;
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...]

Completed in 760 milliseconds

1 2 3