| /device/generic/goldfish/gps/ |
| gps_qemu.c | 183 int overflow; member in struct:__anon3035 227 r->overflow = 0; 546 if (r->overflow) { 547 r->overflow = (c != '\n'); 552 r->overflow = 1;
|
| /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
| fx_zlib_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/qemu/distrib/zlib-1.2.8/ |
| 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/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...] |
| /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/openssl/openssl/crypto/bn/asm/ |
| ppc-mont.pl | 208 addze $ovf,$ovf ; upmost overflow bit 273 addic $ovf,$ovf,-1 ; move upmost overflow to XER[CA] 300 subfe $ovf,$j,$ovf ; handle upmost overflow bit
|
| /external/chromium_org/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
|
| /external/lldb/source/Plugins/Instruction/ARM/ |
| EmulateInstructionARM.h | 236 uint8_t overflow; member in struct:lldb_private::EmulateInstructionARM::__anon29052 247 // Default arguments are specified for carry and overflow parameters, which means 255 const uint32_t overflow = ~0u); 267 // Default arguments are specified for carry and overflow parameters, which means 273 const uint32_t overflow = ~0u);
|
| /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/openssl/crypto/bn/asm/ |
| ppc-mont.pl | 208 addze $ovf,$ovf ; upmost overflow bit 273 addic $ovf,$ovf,-1 ; move upmost overflow to XER[CA] 300 subfe $ovf,$j,$ovf ; handle upmost overflow bit
|
| /frameworks/av/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/design/ |
| default.css | 278 overflow: hidden; 557 overflow: hidden; } 565 overflow: hidden; } 573 overflow: hidden; }
|
| /external/chromium_org/chrome/browser/resources/options/ |
| manage_profile_overlay.css | 62 overflow: hidden;
|
| /external/chromium_org/chrome/browser/resources/uber/ |
| uber_shared.css | 12 * showing sub-pages that vertically overflow. */ 13 overflow-y: scroll;
|
| /external/chromium_org/remoting/webapp/ |
| main.css | 234 overflow: hidden; 638 overflow-x: hidden !important; 642 overflow-y: hidden !important; 646 overflow: scroll; 651 * "Why is this safe?" that don't overflow in any language.
|
| /external/chromium_org/ui/file_manager/file_manager/foreground/js/ |
| metrics.js | 111 // Collect invalid values in the overflow bucket at the end.
|
| /external/chromium_org/ui/webui/resources/css/ |
| tree.css | 8 overflow: auto;
|
| /external/chromium_org/v8/src/ |
| apinatives.js | 46 // if we need to bail out from a stack overflow.
|
| /external/chromium_org/v8/test/mjsunit/compiler/ |
| dead-loops.js | 53 // Involves only reads on typed arrays, and {i} doesn't overflow.
|
| division-by-constant.js | 116 // Avoid deopt caused by overflow, we do not want to test this here.
|
| /libcore/libart/src/main/java/java/lang/ |
| Thread.java | 767 // avoid overflow: if total > 292,277 years, just wait forever 768 boolean overflow = millis >= (Long.MAX_VALUE - nanos) / NANOS_PER_MILLI; 770 if (forever | overflow) { 780 // guaranteed not to overflow [all...] |
| /packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
| MessageAttachmentBar.java | 170 mOverflowButton = (ImageView) findViewById(R.id.overflow); 219 } else if (res == R.id.overflow) { 220 // If no overflow items are visible, just bail out. 221 // We shouldn't be able to get here anyhow since the overflow 241 // in any area that is not the overflow 243 // overflow items.
|
| /sdk/templates/docs/ |
| default.css | 75 overflow-y: scroll;
|
| /external/chromium_org/chrome/browser/resources/inspect/ |
| inspect.css | 177 overflow: hidden; 330 overflow-x: hidden;
|