Searched defs:overflowed (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DCheckedArithmetic.h51 * - void overflowed();
54 * This function must return true if overflowed() has been called on an
78 NO_RETURN_DUE_TO_CRASH void overflowed() function in class:WTF::CrashOnOverflow
96 void overflowed() function in class:WTF::RecordOverflow
438 this->overflowed();
444 this->overflowed();
452 this->overflowed();
459 this->overflowed();
466 this->overflowed();
468 this->overflowed();
653 bool overflowed = lhs.safeGet(x) == CheckedState::DidOverflow || rhs.safeGet(y) == CheckedState::DidOverflow; local
665 bool overflowed = lhs.safeGet(x) == CheckedState::DidOverflow || rhs.safeGet(y) == CheckedState::DidOverflow; local
677 bool overflowed = lhs.safeGet(x) == CheckedState::DidOverflow || rhs.safeGet(y) == CheckedState::DidOverflow; local
[all...]
/external/mksh/src/
H A Dshf.c850 bool overflowed = false; local
855 overflowed = true;
859 if (overflowed)
/external/chromium_org/base/third_party/symbolize/
H A Ddemangle.cc150 bool overflowed; // True if output gets overflowed. member in struct:__anon3950
186 state->overflowed = false;
248 // Append "str" at "out_cur". If there is an overflow, "overflowed"
258 state->overflowed = true;
262 if (!state->overflowed) {
1227 state.overflowed == false &&
/external/v8/src/
H A Dmark-compact.h188 bool overflowed() const { return overflowed_; } function in class:v8::internal::MarkingDeque
195 // otherwise mark the object as overflowed and wait for a rescan of the
675 // or overflowed in the heap.
680 // overflowed objects in the heap, in which case the marking stack's
684 // Refill the marking stack with overflowed objects from the heap. This
/external/chromium_org/v8/src/
H A Dmark-compact.h188 bool overflowed() const { return overflowed_; } function in class:v8::internal::MarkingDeque
195 // otherwise mark the object as overflowed and wait for a rescan of the
850 // or overflowed in the heap.
854 // or overflowed in the heap. This respects references only considered in
868 // overflowed objects in the heap, in which case the marking stack's
872 // Refill the marking stack with overflowed objects from the heap. This
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp639 // Compute the size before cookie, and track whether it overflowed.
645 // Add in the cookie, and check whether it's overflowed.
746 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1); local
748 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
750 hasOverflow = overflowed;
785 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1); local
787 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
789 hasOverflow = overflowed;

Completed in 1489 milliseconds