Searched refs:Overflow (Results 1 - 25 of 36) sorted by relevance

12

/external/clang/test/SemaTemplate/
H A Dtemp_arg_nontype.cpp96 template<unsigned char C> struct Overflow; // expected-note{{template parameter is declared here}}
98 Overflow<5> *overflow1; // okay
99 Overflow<255> *overflow2; // okay
100 Overflow<256> *overflow3; // expected-warning{{non-type template argument value '256' truncated to '0' for template parameter of type 'unsigned char'}}
/external/chromium_org/third_party/freetype/src/psaux/
H A Dpsconv.c294 goto Overflow;
301 goto Overflow;
307 goto Overflow;
348 Overflow:
/external/freetype/src/psaux/
H A Dpsconv.c294 goto Overflow;
301 goto Overflow;
307 goto Overflow;
348 Overflow:
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/psaux/
H A Dpsconv.c312 goto Overflow;
319 goto Overflow;
325 goto Overflow;
374 Overflow:
/external/clang/lib/Lex/
H A DPPExpressions.cpp246 // Overflow parsing integer literal.
372 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue(); local
375 if (Overflow && ValueLive)
567 bool Overflow = false; local
582 Res = llvm::APSInt(LHS.Val.sdiv_ov(RHS.Val, Overflow), false);
594 Res = llvm::APSInt(LHS.Val.smul_ov(RHS.Val, Overflow), false);
602 Overflow = ShAmt >= LHS.Val.getBitWidth();
603 if (Overflow)
607 Res = llvm::APSInt(LHS.Val.sshl_ov(ShAmt, Overflow), false);
615 Overflow
[all...]
/external/llvm/lib/Support/
H A DAPInt.cpp1997 APInt APInt::sadd_ov(const APInt &RHS, bool &Overflow) const {
1999 Overflow = isNonNegative() == RHS.isNonNegative() &&
2004 APInt APInt::uadd_ov(const APInt &RHS, bool &Overflow) const {
2006 Overflow = Res.ult(RHS);
2010 APInt APInt::ssub_ov(const APInt &RHS, bool &Overflow) const {
2012 Overflow = isNonNegative() != RHS.isNonNegative() &&
2017 APInt APInt::usub_ov(const APInt &RHS, bool &Overflow) const {
2019 Overflow = Res.ugt(*this);
2023 APInt APInt::sdiv_ov(const APInt &RHS, bool &Overflow) const {
2025 Overflow
[all...]
/external/llvm/include/llvm/ADT/
H A DAPInt.h932 APInt sadd_ov(const APInt &RHS, bool &Overflow) const;
933 APInt uadd_ov(const APInt &RHS, bool &Overflow) const;
934 APInt ssub_ov(const APInt &RHS, bool &Overflow) const;
935 APInt usub_ov(const APInt &RHS, bool &Overflow) const;
936 APInt sdiv_ov(const APInt &RHS, bool &Overflow) const;
937 APInt smul_ov(const APInt &RHS, bool &Overflow) const;
938 APInt umul_ov(const APInt &RHS, bool &Overflow) const;
939 APInt sshl_ov(unsigned Amt, bool &Overflow) const;
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffparse.c273 goto Overflow;
343 goto Overflow;
374 goto Overflow;
386 Overflow:
430 goto Overflow;
435 goto Overflow;
440 Overflow:
/external/freetype/src/cff/
H A Dcffparse.c269 goto Overflow;
339 goto Overflow;
370 goto Overflow;
382 Overflow:
426 goto Overflow;
431 goto Overflow;
436 Overflow:
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/cff/
H A Dcffparse.c273 goto Overflow;
343 goto Overflow;
374 goto Overflow;
386 Overflow:
430 goto Overflow;
435 goto Overflow;
440 Overflow:
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
H A Dxdflong.asm131 idesc64 isrL, 0x0008, 0 ; 0x04, 4, #OF, INTO detected Overflow
170 dw isrR, 0 ; 0x04, 4, #OF, INTO detected Overflow
H A Dxdfprotect.asm105 idesc32 isrP, 0x0008, 0 ; 0x04, 4, #OF, INTO detected Overflow
143 dw isrR, 0 ; 0x04, 4, #OF, INTO detected Overflow
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_mutexset_test.cc108 TEST(MutexSet, Overflow) {
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp1665 bool Overflow; local
1669 Res = Op1->getValue().sadd_ov(Op2->getValue(), Overflow);
1672 Res = Op1->getValue().uadd_ov(Op2->getValue(), Overflow);
1675 Res = Op1->getValue().ssub_ov(Op2->getValue(), Overflow);
1678 Res = Op1->getValue().usub_ov(Op2->getValue(), Overflow);
1681 Res = Op1->getValue().smul_ov(Op2->getValue(), Overflow);
1684 Res = Op1->getValue().umul_ov(Op2->getValue(), Overflow);
1689 ConstantInt::get(Type::getInt1Ty(Ty->getContext()), Overflow)
/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp99 unsigned Overflow = local
102 return hash_combine(BinOp->getOpcode(), Overflow, LHS, RHS);
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DTouchActionTest.cpp336 TEST_F(TouchActionTest, Overflow)
/external/chromium_org/base/memory/
H A Ddiscardable_memory_manager_unittest.cc222 TEST_F(DiscardableMemoryManagerTest, Overflow) {
/external/chromium_org/third_party/sqlite/src/src/
H A Dshell.c994 fprintf(pArg->out, "Number of Pcache Overflow Bytes: %d (max %d) bytes\n", iCur, iHiwtr);
1003 fprintf(pArg->out, "Number of Scratch Overflow Bytes: %d (max %d) bytes\n", iCur, iHiwtr);
/external/chromium_org/third_party/sqlite/src/tool/
H A Dspaceanal.tcl293 statline {Overflow pages used} $ovfl_pages
569 Overflow pages used
/external/llvm/lib/Target/R600/
H A DR600ISelLowering.cpp1060 // Overflow. So we do the shift in two steps, the alternative is to
1063 SDValue Overflow = DAG.getNode(ISD::SRL, DL, VT, Lo, CompShift); local
1064 Overflow = DAG.getNode(ISD::SRL, DL, VT, Overflow, One);
1067 HiSmall = DAG.getNode(ISD::OR, DL, VT, HiSmall, Overflow);
1098 // Overflow. So we do the shift in two steps, the alternative is to
1101 SDValue Overflow = DAG.getNode(ISD::SHL, DL, VT, Hi, CompShift); local
1102 Overflow = DAG.getNode(ISD::SHL, DL, VT, Overflow, One);
1106 LoSmall = DAG.getNode(ISD::OR, DL, VT, LoSmall, Overflow);
[all...]
/external/chromium_org/third_party/freetype/src/raster/
H A Dftraster.c746 ras.error = FT_THROW( Overflow );
853 ras.error = FT_THROW( Overflow );
909 ras.error = FT_THROW( Overflow );
1162 ras.error = FT_THROW( Overflow );
1337 ras.error = FT_THROW( Overflow );
/external/freetype/src/raster/
H A Dftraster.c748 ras.error = FT_THROW( Overflow );
855 ras.error = FT_THROW( Overflow );
911 ras.error = FT_THROW( Overflow );
1164 ras.error = FT_THROW( Overflow );
1339 ras.error = FT_THROW( Overflow );
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/raster/
H A Dftraster.c748 ras.error = FT_THROW( Overflow );
855 ras.error = FT_THROW( Overflow );
911 ras.error = FT_THROW( Overflow );
1164 ras.error = FT_THROW( Overflow );
1339 ras.error = FT_THROW( Overflow );
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp701 // Overflow occurred if it occurred in the larger type, or if the high part
704 SDValue Overflow; local
709 Overflow = DAG.getSetCC(DL, N->getValueType(1), Hi,
715 Overflow = DAG.getSetCC(DL, N->getValueType(1), SExt, Mul, ISD::SETNE);
720 Overflow = DAG.getNode(ISD::OR, DL, N->getValueType(1), Overflow,
724 ReplaceValueWith(SDValue(N, 1), Overflow); local
2024 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
2026 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
2298 SDValue Overflow local
2303 ReplaceValueWith(SDValue(N, 1), Overflow); local
[all...]
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp1087 SDValue Value, Overflow; local
1146 Overflow = DAG.getNode(AArch64ISD::SUBS, DL, VTs, UpperBits, LowerBits)
1157 Overflow =
1173 Overflow = DAG.getNode(AArch64ISD::SUBS, DL, VTs, UpperBits, LowerBits)
1178 Overflow =
1191 Overflow = Value.getValue(1);
1193 return std::make_pair(Value, Overflow);
1308 SDValue Value, Overflow; local
1309 std::tie(Value, Overflow) = getAArch64XALUOOp(CC, Op, DAG);
1319 Overflow
2869 SDValue Value, Overflow; local
3191 SDValue Value, Overflow; local
[all...]

Completed in 2628 milliseconds

12