| /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...] |
| /external/valgrind/coregrind/m_syswrap/ |
| syswrap-generic.c | 1318 Bool overflow; local [all...] |
| /hardware/invensense/6515/libsensors_iio/ |
| MPLSensor.cpp | 2699 int overflow = mCompassOverFlow; local 2724 int overflow = mCompassOverFlow; local [all...] |
| /toolchain/binutils/binutils-2.25/bfd/ |
| coff-arm.c | 623 /* Check for overflow. */ 728 /* Check for overflow. */ 1604 bfd_boolean overflow = FALSE; local [all...] |
| coff-sh.c | 1121 bfd_boolean overflow; local 2582 bfd_boolean overflow; local [all...] |
| /toolchain/binutils/binutils-2.25/binutils/ |
| stabs.c | 255 bfd_boolean overflow; local 288 overflow = FALSE; 309 overflow = TRUE; 314 if (! overflow) 327 warn_stab (orig, _("numeric overflow")); [all...] |
| /toolchain/binutils/binutils-2.25/gold/ |
| tilegx.cc | 772 // overflow check will be supported later 776 STATUS_OVERFLOW, // Relocation overflow. 794 // whether we need to check overflow. 795 unsigned char overflow; member in struct:__anon75766::Tilegx_relocate_functions::Tilegx_howto [all...] |
| /external/lzma/C/ |
| LzmaEnc.c | 2101 Bool overflow; member in struct:__anon19997 [all...] |
| /external/pcre/dist/ |
| pcre_compile.c | 74 holds the compiled pattern length does not overflow. We make it a bit less than 482 "internal error: code overflow\0" 1043 BOOL braced, negated, overflow; local [all...] |
| /external/v8/src/arm/ |
| simulator-arm.cc | 481 PrintF("OVERFLOW flag: %d; ", sim_->overflow_vfp_flag_); 1319 bool overflow; local [all...] |
| /external/v8/src/ppc/ |
| constants-ppc.h | 59 overflow = 8, // Summary overflow enumerator in enum:v8::internal::Condition 366 // Overflow Exception 368 SetOE = 1 << 10, // Set overflow exception 369 LeaveOE = 0 << 10 // No overflow exception
|
| simulator-ppc.cc | 1155 bool overflow; local 2347 bool overflow = (ra_val == kMinInt && rb_val == -1); local 2371 bool overflow = (rb_val == 0); local [all...] |
| /packages/apps/Launcher2/src/com/android/launcher2/ |
| Folder.java | 356 ArrayList<ShortcutInfo> overflow = new ArrayList<ShortcutInfo>(); local 363 overflow.add(child); 375 for (ShortcutInfo item: overflow) { [all...] |
| /packages/apps/Launcher3/src/com/android/launcher3/ |
| Folder.java | 379 ArrayList<ShortcutInfo> overflow = mContent.bindItems(children); local 384 for (ShortcutInfo item: overflow) { [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
| cpplib.h | 815 bool overflow; /* True if the most recent calculation overflowed. */ member in struct:cpp_num [all...] |