Searched defs:overflowed (Results 1 - 5 of 5) 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
433 this->overflowed();
439 this->overflowed();
447 this->overflowed();
454 this->overflowed();
461 this->overflowed();
463 this->overflowed();
648 bool overflowed = lhs.safeGet(x) == CheckedState::DidOverflow || rhs.safeGet(y) == CheckedState::DidOverflow; local
660 bool overflowed = lhs.safeGet(x) == CheckedState::DidOverflow || rhs.safeGet(y) == CheckedState::DidOverflow; local
672 bool overflowed = lhs.safeGet(x) == CheckedState::DidOverflow || rhs.safeGet(y) == CheckedState::DidOverflow; local
[all...]
/external/mksh/src/
H A Dshf.c853 bool overflowed = false; local
858 overflowed = true;
862 if (overflowed)
/external/chromium_org/base/third_party/symbolize/
H A Ddemangle.cc153 bool overflowed; // True if output gets overflowed. member in struct:__anon2530
197 state->overflowed = false;
262 // Append "str" at "out_cur". If there is an overflow, "overflowed"
272 state->overflowed = true;
276 if (!state->overflowed) {
1301 return ParseTopLevelMangledName(&state) && !state.overflowed;
/external/chromium_org/v8/src/heap/
H A Dmark-compact.h160 bool overflowed() const { return overflowed_; } function in class:v8::internal::MarkingDeque
167 // otherwise mark the object as overflowed and wait for a rescan of the
763 // or overflowed in the heap.
767 // or overflowed in the heap. This respects references only considered in
781 // overflowed objects in the heap, in which case the marking stack's
785 // Refill the marking stack with overflowed objects from the heap. This
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp551 // Compute the size before cookie, and track whether it overflowed.
557 // Add in the cookie, and check whether it's overflowed.
658 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1); local
660 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
662 hasOverflow = overflowed;
697 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1); local
699 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
701 hasOverflow = overflowed;

Completed in 3429 milliseconds