HomeSort by relevance Sort by last modified time
    Searched defs:Overflow (Results 1 - 17 of 17) sorted by null

  /frameworks/compile/mclinker/include/mcld/LD/
Relocator.h 39 Overflow,
  /external/clang/lib/Lex/
LiteralSupport.cpp 141 bool Overflow = false;
146 Overflow |= (ResultChar & 0xF0000000) ? true : false;
153 Overflow = true;
157 // Check for overflow.
158 if (Overflow && Diags) // Too many digits to fit in
179 // Check for overflow. Reject '\777', but not L'\777'.
907 /// matches Val's input width. If there is an overflow, set Val to the low bits
911 // bits per digit in this radix. If we can't possibly overflow a
913 // integer. This avoids the expensive overflow checking below, and
915 // hex/octal values which don't overflow)
    [all...]
PPExpressions.cpp 246 // Overflow parsing integer literal.
254 // Detect overflow based on whether the value is signed. If signed
372 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue();
375 if (Overflow && ValueLive)
567 bool Overflow = false;
582 Res = llvm::APSInt(LHS.Val.sdiv_ov(RHS.Val, Overflow), false);
594 Res = llvm::APSInt(LHS.Val.smul_ov(RHS.Val, Overflow), false);
599 // Determine whether overflow is about to happen.
602 Overflow = ShAmt >= LHS.Val.getBitWidth();
603 if (Overflow)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 98 // Hash the overflow behavior
99 unsigned Overflow =
102 return hash_combine(BinOp->getOpcode(), Overflow, LHS, RHS);
160 // Check overflow attributes
  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 128 // example, signed integer overflow (Clause 5 [expr]), certain pointer
228 namespace Overflow {
229 // Signed int overflow.
261 // Unsigned int overflow.
267 // Floating-point overflow and NaN.
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 658 // (&GV+C1) - (&GV+C2) -> C1-C2, pointer arithmetic cannot overflow.
    [all...]
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 369 // The sign bit is set in both cases: this MUST overflow.
383 // The sign bit is clear in both cases: this CANNOT overflow.
426 // can prove that it will never overflow.
476 // If multiplying the maximum values does not overflow then we can turn
478 bool Overflow;
479 LHSMax.umul_ov(RHSMax, Overflow);
480 if (!Overflow) {
    [all...]
InstructionCombining.cpp 132 // not overflow. This function only handles the Add and Sub opcodes. For
156 bool Overflow = false;
159 BVal.sadd_ov(CVal, Overflow);
161 BVal.ssub_ov(CVal, Overflow);
164 return !Overflow;
394 // but this requires knowing that the addition does not overflow and other
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
fpieee.h 132 unsigned int Overflow : 1;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 127 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow',
278 were non-zero), or if an overflow or underflow condition occurs. The
304 coefficient), or if an overflow or underflow condition occurs. The
322 class Overflow(Inexact, Rounded):
323 """Numerical overflow.
325 This occurs and signals overflow if the adjusted exponent of a result
376 _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 127 'Inexact', 'Rounded', 'Subnormal', 'Overflow', 'Underflow',
278 were non-zero), or if an overflow or underflow condition occurs. The
304 coefficient), or if an overflow or underflow condition occurs. The
322 class Overflow(Inexact, Rounded):
323 """Numerical overflow.
325 This occurs and signals overflow if the adjusted exponent of a result
376 _signals = [Clamped, DivisionByZero, Inexact, Overflow, Rounded,
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeIntegerTypes.cpp 458 /// Promote the overflow flag of an overflowing arithmetic node.
490 // Calculate the overflow flag: sign extend the arithmetic result from
497 // Use the calculated overflow everywhere.
666 // Calculate the overflow flag: zero extend the arithmetic result from
672 // Use the calculated overflow everywhere.
679 // Promote the overflow bit trivially.
689 // then also check the high bits of the result to see if overflow happened
701 // Overflow occurred if it occurred in the larger type, or if the high part
704 SDValue Overflow;
706 // Unsigned overflow occurred if the high part is non-zero
    [all...]
  /external/clang/lib/CodeGen/
CGExprScalar.cpp 107 /// does not overflow.
431 /// Create a binary op that checks for overflow.
580 // all values of this integer type. Don't need an overflow check.
606 // Don't need an overflow check for lower bound. Just check for
618 // Don't need an overflow check for upper bound. Just check for
642 // FIXME: Maybe split this sanitizer out from float-cast-overflow.
2233 Value *overflow = Builder.CreateExtractValue(resultAndOverflow, 1); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
mce.h 32 ULONG OverFlow:1;
71 ULONG OverFlow:1;
746 ULONGLONG Overflow:1;
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 220 // Add/Sub overflow ops with MVT::Glues are lowered to NZCV dependences.
258 // Custom lower Add/Sub/Mul with overflow.
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]

Completed in 692 milliseconds