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

1 2 3 45 6

  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_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/6/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/7/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/8/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
  /external/v8/test/cctest/
test-macro-assembler-x64.cc 828 // No-overflow tests.
900 ASSERT(x != -1); // Can't overflow by subtracting a Smi.
1144 bool overflow = (x == Smi::kMinValue && y < 0); \/\/ Safe approx. used. local
1146 bool overflow = (x == Smi::kMinValue && y == -1); local
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITArithmetic32_64.cpp 689 addSlowCase(branchAdd32(Overflow, TrustedImm32(1), regT0));
700 linkSlowCase(iter); // overflow check
723 addSlowCase(branchSub32(Overflow, TrustedImm32(1), regT0));
734 linkSlowCase(iter); // overflow check
751 addSlowCase(branchAdd32(Overflow, TrustedImm32(1), regT0));
760 linkSlowCase(iter); // overflow check
776 addSlowCase(branchSub32(Overflow, TrustedImm32(1), regT0));
785 linkSlowCase(iter); // overflow check
824 addSlowCase(branchAdd32(Overflow, regT2, regT0));
844 addSlowCase(branchAdd32(Overflow, Imm32(constant), regT0))
1188 Jump overflow = getSlowCase(iter); \/\/ overflow check local
    [all...]
  /libcore/luni/src/main/native/
cbigint.cpp 680 uint64_t overflow; local
689 overflow = simpleAppendDecimalDigitHighPrecision(result, length, 0);
690 if (overflow)
691 result[length++] = overflow;
705 overflow = simpleMultiplyHighPrecision64 (result, length, TEN_E19);
706 if (overflow)
707 result[length++] = overflow;
712 overflow = simpleMultiplyHighPrecision (result, length, TEN_E9);
713 if (overflow)
714 result[length++] = overflow;
    [all...]
java_lang_StringToReal.cpp 157 uint32_t overflow; local
175 overflow =
177 if (overflow)
179 f[index++] = overflow;
180 /* There is an overflow, but there is no more room
182 * bits anyway, so we must back out of the overflow,
595 uint32_t overflow; local
613 overflow =
615 if (overflow)
618 f[index++] = overflow;
    [all...]
  /external/chromium/net/socket/
ssl_client_socket_win.cc 1119 bool overflow = (bytes_sent_ > static_cast<int>(send_buffer_.cbBuffer)); local
1458 bool overflow = (bytes_sent_ > payload_send_buffer_len_); local
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
trees.c 505 int overflow = 0; /* number of elements with bit length too large */ local
510 * overflow in the case of the bit length tree).
517 if (bits > max_length) bits = max_length, overflow++;
530 if (overflow == 0) return;
532 Trace((stderr,"\nbit length overflow\n"));
540 s->bl_count[bits+1] += 2; /* move one overflow item as its brother */
542 /* The brother of the overflow item also moves one step up,
545 overflow -= 2;
546 } while (overflow > 0);
    [all...]
  /external/zlib/src/
trees.c 503 int overflow = 0; /* number of elements with bit length too large */ local
508 * overflow in the case of the bit length tree).
515 if (bits > max_length) bits = max_length, overflow++;
528 if (overflow == 0) return;
530 Trace((stderr,"\nbit length overflow\n"));
538 s->bl_count[bits+1] += 2; /* move one overflow item as its brother */
540 /* The brother of the overflow item also moves one step up,
543 overflow -= 2;
544 } while (overflow > 0);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/netinet/
ip.h 35 unsigned int overflow:4; member in struct:timestamp
37 unsigned int overflow:4; member in struct:timestamp
142 unsigned int ipt_oflw:4; /* overflow counter */
145 unsigned int ipt_oflw:4; /* overflow counter */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/netinet/
ip.h 35 unsigned int overflow:4; member in struct:timestamp
37 unsigned int overflow:4; member in struct:timestamp
142 unsigned int ipt_oflw:4; /* overflow counter */
145 unsigned int ipt_oflw:4; /* overflow counter */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/netinet/
ip.h 35 unsigned int overflow:4; member in struct:timestamp
37 unsigned int overflow:4; member in struct:timestamp
142 unsigned int ipt_oflw:4; /* overflow counter */
145 unsigned int ipt_oflw:4; /* overflow counter */
  /device/generic/goldfish/gps/
gps_qemu.c 183 int overflow; member in struct:__anon1556
227 r->overflow = 0;
546 if (r->overflow) {
547 r->overflow = (c != '\n');
552 r->overflow = 1;
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_gtk.cc 592 bool overflow = false; local
598 overflow = (tool_item->allocation.x + tool_item->style->xthickness <
601 overflow =
607 overflow = overflow || tool_item->allocation.x == -1;
609 if (overflow)
621 if (!overflow)
916 // For toolbar items (i.e. not the overflow button or other bookmark
    [all...]
  /external/icu4c/common/
ucnv.c 1122 char *overflow, *t; local
1568 UChar *overflow, *t; local
1887 UChar *overflow; local
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 622 // If 'count' was a negative number, it's an overflow.
628 // overflow.
637 // there are initializers. If we do, that's treated like an overflow.
641 // Scale numElements by that. This might overflow, but we don't
648 bool overflow; local
650 = adjustedCount.umul_ov(typeSizeMultiplier, overflow);
651 hasAnyOverflow |= overflow;
656 // used if there was overflow.
659 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
660 hasAnyOverflow |= overflow;
    [all...]
  /external/qemu/android/
hw-qemud.c 230 int overflow; member in struct:QemudSerial
258 qemu_put_be32(f, s->overflow);
277 s->overflow = qemu_get_be32(f);
314 if (s->overflow > 0) {
315 return s->overflow;
340 /* skip overflow bytes */
341 if (s->overflow > 0) {
342 avail = s->overflow;
395 s->overflow = s->in_size;
496 s->overflow = 0
    [all...]
  /external/v8/src/
log.cc 131 bool overflow_; // Tell whether a buffer overflow has occurred.
325 bool overflow = Remove(&sample); local
327 LOG(isolate_, TickEvent(&sample, overflow));
328 overflow = Remove(&sample);
    [all...]
  /external/v8/src/mips/
assembler-mips.h 946 inline bool overflow() const { return pc_ >= reloc_info_writer.pos() - kGap; } function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/arm/
simulator-arm.cc 501 PrintF("OVERFLOW flag: %d; ", sim_->overflow_vfp_flag_);
1361 bool overflow; local
    [all...]

Completed in 1918 milliseconds

1 2 3 45 6