Searched defs:overflow (Results 76 - 100 of 133) sorted by relevance

123456

/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dfloatnum.c248 /* Add exponents, checking for overflow/underflow. */
445 /* Until we hit 1.0 or finish exponent or overflow */
483 /* Round the result. (Don't round underflow or overflow). Also don't
549 * Returns 0 on success, 1 if overflow, -1 if underflow.
560 unsigned int overflow = 0, underflow = 0; local
580 /* and up the exponent (checking for overflow) */
582 overflow = 1;
587 /* adjust the exponent to the output bias, checking for overflow */
590 overflow = 1;
594 /* underflow and overflow bot
[all...]
/external/stlport/stlport/stl/
H A D_fstream.c85 __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()),
/external/chromium_org/third_party/zlib/
H A Dtrees.c509 int overflow = 0; /* number of elements with bit length too large */ local
514 * overflow in the case of the bit length tree).
521 if (bits > max_length) bits = max_length, overflow++;
534 if (overflow == 0) return;
536 Trace((stderr,"\nbit length overflow\n"));
544 s->bl_count[bits+1] += 2; /* move one overflow item as its brother */
546 /* The brother of the overflow item also moves one step up,
549 overflow -= 2;
550 } while (overflow > 0);
1116 "pendingBuf overflow");
[all...]
/external/chromium_org/v8/test/cctest/
H A Dtest-macro-assembler-x64.cc808 DCHECK(x != 0); // Can't overflow by adding a Smi.
928 // No-overflow tests.
1024 DCHECK(x != -1); // Can't overflow by subtracting a Smi.
1266 bool overflow = (x == Smi::kMinValue && y < 0); // Safe approx. used. local
1268 bool overflow = (x == Smi::kMinValue && y == -1); local
1270 bool fraction = !division_by_zero && !overflow && (x % y != 0);
1273 if (!fraction && !overflow && !negative_zero && !division_by_zero) {
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_trees.c503 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);
1100 "pendingBuf overflow");
[all...]
/external/qemu/distrib/zlib-1.2.8/
H A Dtrees.c503 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);
1100 "pendingBuf overflow");
[all...]
/external/zlib/src/
H A Dtrees.c503 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);
1100 "pendingBuf overflow");
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCSSMetadata.js109 "line-height", "list-style-image", "list-style-position", "list-style-type", "list-style", "orphans", "overflow-wrap", "pitch-range",
198 "overflow-x": { values: [
285 "overflow-y": { values: [
294 "overflow": { values: [
408 "text-overflow": { values: [
411 "overflow-wrap": { values: [
435 "text-overflow-mode": { values: [
827 "overflow": 57,
828 "overflow-x": 56,
829 "overflow
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_snprintf.c45 * 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)
996 fmtflt(char *str, size_t *len, size_t size, LDOUBLE fvalue, int width, int precision, int flags, int *overflow) argument
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dfunc.c134 ** abs(X) throws an integer overflow error since there is no
136 sqlite3_result_error(context, "integer overflow", -1);
1216 u8 overflow; /* True if integer overflow seen */ member in struct:SumCtx
1242 if( (p->approx|p->overflow)==0 && sqlite3AddInt64(&p->iSum, v) ){
1243 p->overflow = 1;
1255 if( p->overflow ){
1256 sqlite3_result_error(context,"integer overflow",-1);
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dpprof3561 sub overflow { subroutine
3607 $self->overflow();
4533 # and will almost never overflow the first chunk, so we check for this
5157 # happens to overflow (we want it to wrap):
5209 # happens to overflow (we want it to wrap):
5260 # happens to overflow (we want it to wrap):
/external/deqp/framework/common/
H A DtcuCommandLine.cpp186 int overflow (int ch = -1);
217 int DebugOutStreambuf::overflow (int ch) function in class:tcu::DebugOutStreambuf
/external/jemalloc/bin/
H A Dpprof3570 sub overflow { subroutine
3616 $self->overflow();
4560 # and will almost never overflow the first chunk, so we check for this
5190 # happens to overflow (we want it to wrap):
5242 # happens to overflow (we want it to wrap):
5293 # happens to overflow (we want it to wrap):
/external/libpng/contrib/libtests/
H A Dtarith.c45 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, passe
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c45 * 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)
996 fmtflt(char *str, size_t *len, size_t size, LDOUBLE fvalue, int width, int precision, int flags, int *overflow) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerScrollableArea.cpp347 // Ensure that the dimensions will be computed if they need to be (for overflow:hidden blocks).
593 // Hits in compositing/overflow/automatically-opt-into-composited-scrolling-after-style-change.html.
596 // overflow:scroll should just enable/disable.
603 // overflow:auto may need to lay out again if scrollbars got added/removed.
624 // Our proprietary overflow: overlay value doesn't trigger a layout.
641 // Hits in compositing/overflow/automatically-opt-into-composited-scrolling-after-style-change.html.
688 static bool overflowRequiresScrollbar(EOverflow overflow) argument
690 return overflow == OSCROLL;
693 static bool overflowDefinesAutomaticScrollbar(EOverflow overflow) argument
695 return overflow
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Ducnv.c1059 * the check for buffer overflow is redundant but it is
1120 * Output the fromUnicode overflow buffer.
1122 * @return TRUE if overflow
1130 char *overflow, *t; local
1140 overflow=(char *)cnv->charErrorBuffer;
1145 /* the overflow buffer contains too much, keep the rest */
1149 overflow[j++]=overflow[i++];
1161 /* copy the overflow contents to the target */
1162 *t++=overflow[
1576 UChar *overflow, *t; local
1895 UChar *overflow; local
[all...]
/external/chromium_org/third_party/skia/src/core/
H A DSkPictureRecord.cpp72 // These offsets are where the paint would be if the op size doesn't overflow
126 int overflow = 0; local
130 overflow = sizeof(uint32_t);
138 return kSaveLayerNoBoundsPaintOffset + overflow;
141 return kSaveLayerWithBoundsPaintOffset + overflow;
146 return gPaintOffsets[op] * sizeof(uint32_t) + overflow;
/external/chromium_org/v8/src/mips/
H A Dassembler-mips.h1034 inline bool overflow() const { return pc_ >= reloc_info_writer.pos() - kGap; } function in class:v8::internal::Assembler
1181 // not have to check for overflow. The same is true for writes of large
/external/chromium_org/v8/src/mips64/
H A Dassembler-mips64.h1070 inline bool overflow() const { return pc_ >= reloc_info_writer.pos() - kGap; } function in class:v8::internal::Assembler
1217 // not have to check for overflow. The same is true for writes of large
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp526 // If 'count' was a negative number, it's an overflow.
532 // overflow.
541 // there are initializers. If we do, that's treated like an overflow.
545 // Scale numElements by that. This might overflow, but we don't
552 bool overflow; local
554 = adjustedCount.umul_ov(typeSizeMultiplier, overflow);
555 hasAnyOverflow |= overflow;
560 // used if there was overflow.
563 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
564 hasAnyOverflow |= overflow;
[all...]
/external/icu/icu4c/source/common/
H A Ducnv.c1059 * the check for buffer overflow is redundant but it is
1120 * Output the fromUnicode overflow buffer.
1122 * @return TRUE if overflow
1130 char *overflow, *t; local
1140 overflow=(char *)cnv->charErrorBuffer;
1145 /* the overflow buffer contains too much, keep the rest */
1149 overflow[j++]=overflow[i++];
1161 /* copy the overflow contents to the target */
1162 *t++=overflow[
1576 UChar *overflow, *t; local
1895 UChar *overflow; local
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devsel.c1221 static inline bool overflow(const void *endp, u16 max_size, const void *offset, function
1229 if (overflow(endp, (max_size), (offset), (size))) \
1268 * up to PERF_SAMPLE_PERIOD. After that overflow() must be used to
/external/qemu/android/
H A Dhw-qemud.c231 int overflow; member in struct:QemudSerial
259 qemu_put_be32(f, s->overflow);
278 s->overflow = qemu_get_be32(f);
315 if (s->overflow > 0) {
316 return s->overflow;
341 /* skip overflow bytes */
342 if (s->overflow > 0) {
343 avail = s->overflow;
396 s->overflow = s->in_size;
497 s->overflow
[all...]
/external/skia/src/core/
H A DSkPictureRecord.cpp80 // These offsets are where the paint would be if the op size doesn't overflow
131 int overflow = 0; local
135 overflow = sizeof(uint32_t);
143 return kSaveLayerNoBoundsPaintOffset + overflow;
146 return kSaveLayerWithBoundsPaintOffset + overflow;
151 return gPaintOffsets[op] * sizeof(uint32_t) + overflow;

Completed in 741 milliseconds

123456