Home
last modified time | relevance | path

Searched refs:overflow (Results 1 – 10 of 10) sorted by relevance

/art/test/070-nio-buffer/
Dexpected.txt2 Got expected buffer overflow exception
4 Got expected buffer overflow exception
/art/compiler/optimizing/
Dbounds_check_elimination.cc237 ValueBound Add(int32_t c, /* out */ bool* overflow, /* out */ bool* underflow) const { in Add() argument
238 *overflow = *underflow = false; in Add()
246 *overflow = true; in Add()
256 *overflow = true; in Add()
336 bool overflow, underflow; in Add() local
337 ValueBound lower = lower_.Add(constant, &overflow, &underflow); in Add()
343 ValueBound upper = upper_.Add(constant, &overflow, &underflow); in Add()
344 if (overflow) { in Add()
668 bool overflow; in HandleIfBetweenTwoMonotonicValueRanges() local
673 right_range->GetBound().Add(left_compensation, &overflow, &underflow)); in HandleIfBetweenTwoMonotonicValueRanges()
[all …]
Dinduction_var_range.cc49 static int64_t SafeMul(int64_t a, int64_t b, /*out*/ bool* overflow) { in SafeMul() argument
51 *overflow = true; in SafeMul()
57 static int64_t IntPow(int64_t b, int64_t e, /*out*/ bool* overflow) { in IntPow() argument
63 pow = SafeMul(pow, b, overflow); in IntPow()
67 b = SafeMul(b, b, overflow); in IntPow()
1073 bool overflow = false; in GenerateLastValueGeometric() local
1074 int64_t fpow = IntPow(f, m, &overflow); in GenerateLastValueGeometric()
1077 if (overflow || (type != Primitive::kPrimLong && !CanLongValueFitIntoInt(fpow))) { in GenerateLastValueGeometric()
/art/test/302-float-conversion/
Dinfo.txt3 should not overflow under constant conversions.
/art/test/800-smali/smali/
Db_24399945.smali16 :case3 # key = INT_MIN (overflow!)
/art/test/800-smali/
Dexpected.txt3 PackedSwitch key overflow
/art/runtime/
Dlock_word.h265 constexpr uint64_t overflow = static_cast<uint64_t>(kStateForwardingAddressShifted) + in LockWord() local
267 constexpr bool is_larger = overflow > static_cast<uint64_t>(0xFFFFFFFF); in LockWord()
Dindenter.h55 int_type overflow(int_type c) OVERRIDE { in overflow() function
/art/test/098-ddmc/
Dexpected.txt8 Confirm when we overflow, we don't roll over to zero. b/17392248
/art/cmdline/
DREADME.md201 "Failed to parse double from " + str + "; overflow/underflow occurred");