Searched refs:HandleOverflow (Results 1 – 2 of 2) sorted by relevance
/netbsd-src/common/lib/libc/misc/ |
H A D | ubsan.c | 338 static void HandleOverflow(bool isFatal, struct COverflowData *pData, unsigned long ulLHS, unsigned… 358 HandleOverflow(bool isFatal, struct COverflowData *pData, unsigned long ulLHS, unsigned long ulRHS,… in HandleOverflow() function 763 HandleOverflow(false, pData, ulLHS, ulRHS, PLUS_STRING); in __ubsan_handle_add_overflow() 772 HandleOverflow(true, pData, ulLHS, ulRHS, PLUS_STRING); in __ubsan_handle_add_overflow_abort() 835 HandleOverflow(false, pData, ulLHS, ulRHS, DIVREM_STRING); in __ubsan_handle_divrem_overflow() 844 HandleOverflow(true, pData, ulLHS, ulRHS, DIVREM_STRING); in __ubsan_handle_divrem_overflow_abort() 990 HandleOverflow(false, pData, ulLHS, ulRHS, MUL_STRING); in __ubsan_handle_mul_overflow() 999 HandleOverflow(true, pData, ulLHS, ulRHS, MUL_STRING); in __ubsan_handle_mul_overflow_abort() 1156 HandleOverflow(false, pData, ulLHS, ulRHS, MINUS_STRING); in __ubsan_handle_sub_overflow() 1165 HandleOverflow(true, pData, ulLHS, ulRHS, MINUS_STRING); in __ubsan_handle_sub_overflow_abort()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | ExprConstant.cpp | 2516 static bool HandleOverflow(EvalInfo &Info, const Expr *E, in HandleOverflow() function 2534 return HandleOverflow(Info, E, Value, DestType); in HandleFloatToIntCast() 2724 return HandleOverflow(Info, E, Value, E->getType()); in CheckedIntArithmetic() 2760 return HandleOverflow(Info, E, -LHS.extend(LHS.getBitWidth() + 1), in handleIntIntBinOp() 4501 return HandleOverflow(Info, E, ActualValue, SubobjType); in found() 4510 return HandleOverflow(Info, E, ActualValue, SubobjType); in found() 12969 !HandleOverflow(Info, E, TrueResult, E->getType())) in VisitBinaryOperator() 13120 !HandleOverflow(Info, E, -Value.extend(Value.getBitWidth() + 1), in VisitUnaryOperator() 13230 if (Overflowed && !HandleOverflow(Info, E, Result, DestType)) in VisitCastExpr() 13372 if (Overflowed && !HandleOverflow(Info, E, Negated, E->getType())) in VisitUnaryOperator() [all …]
|