/external/v8/src/ |
hydrogen-instructions.cc | 72 static int32_t ConvertAndSetOverflow(int64_t result, bool* overflow) { 74 *overflow = true; 78 *overflow = true; 85 static int32_t AddWithoutOverflow(int32_t a, int32_t b, bool* overflow) { 87 return ConvertAndSetOverflow(result, overflow); 91 static int32_t SubWithoutOverflow(int32_t a, int32_t b, bool* overflow) { 93 return ConvertAndSetOverflow(result, overflow); 97 static int32_t MulWithoutOverflow(int32_t a, int32_t b, bool* overflow) { 99 return ConvertAndSetOverflow(result, overflow); 118 bool may_overflow = false; // Overflow is ignored here [all...] |
conversions.cc | 172 int overflow = static_cast<int>(number >> 53); local 173 if (overflow != 0) { 174 // Overflow occurred. Need to determine which direction to round the 177 while (overflow > 1) { 179 overflow >>= 1; 211 // Rounding up may cause overflow. 400 // will not overflow the multiplier, we stop parsing the part 631 // Check overflow. [all...] |
log.h | 333 void TickEvent(TickSample* sample, bool overflow);
|
/development/tools/emulator/system/gps/ |
gps_qemu.c | 183 int overflow; member in struct:__anon1369 227 r->overflow = 0; 532 if (r->overflow) { 533 r->overflow = (c != '\n'); 538 r->overflow = 1;
|
/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...] |
/sdk/emulator/gps/ |
gps_qemu.c | 183 int overflow; member in struct:__anon25405 227 r->overflow = 0; 532 if (r->overflow) { 533 r->overflow = (c != '\n'); 538 r->overflow = 1;
|
/external/v8/test/mjsunit/ |
smi-ops.js | 92 assertEquals(SMI_MIN - ONE, Sub1(SMI_MIN)); // overflow 93 assertEquals(ONE - SMI_MIN, Sub1Reversed(SMI_MIN)); // overflow 99 assertEquals(SMI_MIN - ONE_HUNDRED, Sub100(SMI_MIN)); // overflow 100 assertEquals(ONE_HUNDRED - SMI_MIN, Sub100Reversed(SMI_MIN)); // overflow 699 // allocations we got the Smi overflow case wrong. 703 // Regression test for correct handling of overflow in smi comparison.
|
codegen-coverage.js | 101 // Subtraction should overflow the 31-bit smi range. The result
|
/frameworks/base/media/libstagefright/codecs/amrnb/enc/src/ |
cod_amr.cpp | 51 Description: Added initialization of the overflow flag in cod_amr_init() 52 and in cod_amr_reset(). This overflow flag is now part of 294 /* Initialize overflow Flag */ 296 s->overflow = 0; 492 /* Initialize overflow Flag */ 494 st->overflow = 0; [all...] |
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-docs.js | 39 $("body").css({'overflow':'auto'}); 40 $("html").css({'overflow':'auto'}); 42 $("#doc-content").css({'overflow':'visible', 'border-left':'3px solid #DDD'}); 44 $("#nav-tree").css({'overflow-y': 'auto'});
|
/build/tools/droiddoc/templates-sdk/assets/ |
android-developer-docs.css | 40 overflow:hidden; 48 overflow:auto; 53 overflow:auto; 212 overflow-x: auto; 213 overflow-y: scroll; 231 overflow:auto; 1436 overflow:visible; 1462 overflow:inherit; 1485 overflow: visible;
|
/dalvik/vm/compiler/template/armv5te/ |
TEMPLATE_INVOKE_METHOD_NATIVE.S | 10 bxlo lr @ return to raise stack overflow excep.
|
/external/chromium/chrome/browser/resources/options/chromeos/ |
internet_options_page.css | 89 overflow: hidden;
|
/external/webkit/Source/WebCore/css/ |
mediaControlsAndroid.css | 42 overflow: hidden;
|
/external/webkit/Source/WebCore/platform/graphics/gtk/ |
FontGtk.cpp | 349 float Font::floatWidthForComplexText(const TextRun& run, HashSet<const SimpleFontData*>* fallbackFonts, GlyphOverflow* overflow) const 353 return floatWidthForSimpleText(run, 0, fallbackFonts, overflow);
|
/external/webkit/Tools/CSSTestSuiteHarness/harness/ |
harness.css | 202 overflow-y: auto;
|
/libcore/luni/src/main/java/java/lang/ |
Thread.java | 798 // avoid overflow: if total > 292,277 years, just wait forever 799 boolean overflow = millis >= (Long.MAX_VALUE - nanos) / NANOS_PER_MILLI; 801 if (forever | overflow) { 816 // guaranteed not to overflow [all...] |
/dalvik/vm/arch/arm/ |
CallOldABI.S | 138 @ and the VM preserves an overflow region at the bottom, so it should be
|
/external/chromium/chrome/browser/ui/gtk/ |
browser_actions_toolbar_gtk.cc | 221 // If the context menu was showing for the overflow menu, re-assert the 228 // If the context menu was showing for the overflow menu, and a command 229 // is executed, then stop showing the overflow menu. 410 // buttons, but only appears when the overflow menu is showing. 414 // |overflow_area_| holds the overflow chevron and the separator, which 740 // During drags, when the overflow chevron shows for the first time, 891 GtkWidget* overflow, GdkEventButton* event) { 923 GtkWidget* overflow, GdkEventButton* event) { 927 GtkWidget* menu_item = GTK_MENU_SHELL(overflow)->active_menu_item; 931 int item_index = g_list_index(GTK_MENU_SHELL(overflow)->children, menu_item) [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/webkit/Source/WebCore/bindings/objc/ |
DOMCSS.h | 210 - (NSString *)overflow; 211 - (void)setOverflow:(NSString *)overflow;
|
/external/zlib/contrib/iostream/ |
zfstream.cpp | 173 int gzfilebuf::overflow( int c ) { function in class:gzfilebuf
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/ |
stdio_sync_filebuf.h | 132 overflow(int_type __c = traits_type::eof()) function in class:stdio_sync_filebuf
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/ |
stdio_sync_filebuf.h | 132 overflow(int_type __c = traits_type::eof()) function in class:stdio_sync_filebuf
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/ |
stdio_sync_filebuf.h | 132 overflow(int_type __c = traits_type::eof()) function in class:stdio_sync_filebuf
|