HomeSort by relevance Sort by last modified time
    Searched defs:overflow (Results 151 - 175 of 266) sorted by null

1 2 3 4 5 67 8 91011

  /external/pdfium/third_party/zlib_v128/
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...]
  /external/v8/src/mips/
assembler-mips.h 1061 inline bool overflow() const { return pc_ >= reloc_info_writer.pos() - kGap; } function in namespace:v8::internal
    [all...]
  /external/v8/src/mips64/
assembler-mips64.h 1117 inline bool overflow() const { return pc_ >= reloc_info_writer.pos() - kGap; } function in namespace:v8::internal
    [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...]
  /device/generic/goldfish/gps/
gps_qemu.c 181 int overflow; member in struct:__anon2827
225 r->overflow = 0;
544 if (r->overflow) {
545 r->overflow = (c != '\n');
550 r->overflow = 1;
  /external/icu/icu4c/source/common/
ucnv.c 1120 char *overflow, *t; local
1566 UChar *overflow, *t; local
1885 UChar *overflow; local
    [all...]
  /external/libpng/contrib/libtests/
tarith.c 45 fprintf(stderr, "overflow in: %s\n", msg);
123 /* Check for overflow in the buffer by setting a marker. */
133 fprintf(stderr, "%g[%d] -> '%s'[%lu] buffer overflow\n", test,
609 int overflow = 0; local
684 if (!ok) ++overflow;
687 ok = 0, ++overflow, fpround = fp/*misleading*/;
691 fp, ok ? "ok" : "overflow");
698 fprintf(stderr, "%d * %d / %d -> overflow (expected %lld)\n", a,
701 fprintf(stderr, "%d * %d / %d -> %d (expected overflow %lld)\n", a,
725 "errors)\n", tested, overflow, passed, error, error64)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_snprintf.c 45 * check for integer overflow of the field width, precision, and return
474 int overflow = 0; local
538 overflow = 1;
571 overflow = 1;
719 precision, flags, &overflow);
720 if (overflow)
733 precision, flags, &overflow);
734 if (overflow)
753 precision, flags, &overflow);
754 if (overflow)
    [all...]
  /external/v8/src/runtime/
runtime-strings.cc 130 // In case of empty handle and no pending exception we have stack overflow.
640 bool overflow = false; local
662 overflow = true;
670 if (!overflow && separator_length > 0) {
678 overflow = true;
684 overflow = true;
687 if (overflow) {
    [all...]
  /external/valgrind/coregrind/
m_signals.c 2518 Bool overflow; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/netinet/
ip.h 36 unsigned int overflow:4; member in struct:timestamp
38 unsigned int overflow:4; member in struct:timestamp
143 unsigned int ipt_oflw:4; /* overflow counter */
146 unsigned int ipt_oflw:4; /* overflow counter */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/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 */
  /system/core/liblog/tests/
liblog_test.cpp 807 A kind overflow of kindness: there are no faces\n\
1913 bool overflow = false; local
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
aout-tic30.c 401 bfd_boolean overflow; local
426 overflow = FALSE;
473 overflow = TRUE;
481 overflow = TRUE;
491 overflow = TRUE;
520 return overflow ? bfd_reloc_overflow : bfd_reloc_ok;
    [all...]
  /art/compiler/optimizing/
bounds_check_elimination.cc 56 // No overflow.
250 // `overflow` or `underflow` will return whether the resulting bound may
251 // overflow or underflow an int.
252 ValueBound Add(int32_t c, /* out */ bool* overflow, /* out */ bool* underflow) const {
253 *overflow = *underflow = false;
261 *overflow = true;
266 // (array.length + non-positive-constant) won't overflow an int.
271 *overflow = true;
351 bool overflow, underflow; local
352 ValueBound lower = lower_.Add(constant, &overflow, &underflow)
680 bool overflow; local
756 bool overflow, underflow; local
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 604 // If 'count' was a negative number, it's an overflow.
610 // overflow.
619 // there are initializers. If we do, that's treated like an overflow.
623 // Scale numElements by that. This might overflow, but we don't
630 bool overflow; local
632 = adjustedCount.umul_ov(typeSizeMultiplier, overflow);
633 hasAnyOverflow |= overflow;
638 // used if there was overflow.
641 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
642 hasAnyOverflow |= overflow;
    [all...]
  /external/curl/tests/server/
sws.c 928 int overflow = 0; local
946 overflow = 1;
1000 if(overflow || (req->offset == REQBUFSIZ-1 && got > 0)) {
1001 logmsg("Request would overflow buffer, closing connection");
1007 logmsg("Request buffer overflow, closing connection");
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/math/
BigDecimal.java 36 /* intermediate calculations cannot cause 31-bit overflow. */
3781 break overflow; local
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
BigDecimal.java 33 /* intermediate calculations cannot cause 31-bit overflow. */
3854 break overflow; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
BigDecimal.java 35 /* intermediate calculations cannot cause 31-bit overflow. */
3856 break overflow; local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
fwd_txfm_impl_sse2.h 89 int test, overflow; local
178 overflow = check_epi16_overflow_x2(&x0, &x1);
179 if (overflow) {
200 overflow = check_epi16_overflow_x2(&t0, &t1);
201 if (overflow) {
239 overflow = check_epi16_overflow_x2(&x0, &x1);
240 if (overflow) {
283 int overflow; local
322 overflow = check_epi16_overflow_x8(&q0, &q1, &q2, &q3,
324 if (overflow) {
618 int overflow; local
    [all...]
  /external/v8/src/
assembler.cc 1752 const bool overflow = info.overflow(); local
    [all...]
assembler.h 1270 bool overflow() const { function in struct:v8::internal::BASE_EMBEDDED::PerTypeEntryInfo
    [all...]
log.cc 658 bool overflow_; // Tell whether a buffer overflow has occurred.
768 bool overflow = Remove(&sample); local
770 LOG(isolate_, TickEvent(&sample, overflow));
771 overflow = Remove(&sample);
    [all...]
  /external/v8/src/compiler/
wasm-compiler.cc 841 Node* overflow = local
843 trap_->ZeroCheck64(kTrapFloatUnrepresentable, overflow);
850 Node* overflow = local
852 trap_->ZeroCheck64(kTrapFloatUnrepresentable, overflow);
859 Node* overflow = local
861 trap_->ZeroCheck64(kTrapFloatUnrepresentable, overflow);
868 Node* overflow = local
870 trap_->ZeroCheck64(kTrapFloatUnrepresentable, overflow);
1131 Node* overflow = Binop(wasm::kExprF64Ne, f64_trunc, check); local
1147 Node* overflow = Binop(wasm::kExprF64Ne, trunc, check); local
1165 Node* overflow = Binop(wasm::kExprF64Ne, f64_trunc, check); local
1181 Node* overflow = Binop(wasm::kExprF64Ne, trunc, check); local
    [all...]

Completed in 1548 milliseconds

1 2 3 4 5 67 8 91011