Home
last modified time | relevance | path

Searched refs:Overflowed (Results 1 – 20 of 20) sorted by relevance

/external/llvm/include/llvm/ProfileData/
DSampleProf.h125 bool Overflowed;
126 NumSamples = SaturatingMultiplyAdd(S, Weight, NumSamples, &Overflowed);
127 return Overflowed ? sampleprof_error::counter_overflow
139 bool Overflowed;
141 SaturatingMultiplyAdd(S, Weight, TargetSamples, &Overflowed);
142 return Overflowed ? sampleprof_error::counter_overflow
187 bool Overflowed;
189 SaturatingMultiplyAdd(Num, Weight, TotalSamples, &Overflowed);
190 return Overflowed ? sampleprof_error::counter_overflow
194 bool Overflowed;
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
DSampleProf.h156 bool Overflowed;
157 NumSamples = SaturatingMultiplyAdd(S, Weight, NumSamples, &Overflowed);
158 return Overflowed ? sampleprof_error::counter_overflow
170 bool Overflowed;
172 SaturatingMultiplyAdd(S, Weight, TargetSamples, &Overflowed);
173 return Overflowed ? sampleprof_error::counter_overflow
224 bool Overflowed;
226 SaturatingMultiplyAdd(Num, Weight, TotalSamples, &Overflowed);
227 return Overflowed ? sampleprof_error::counter_overflow
232 bool Overflowed;
[all …]
/external/v8/tools/clang/rewrite_to_chrome_style/tests/
Dfunction-templates-expected.cc25 this->Overflowed(); in Checked()
27 this->Overflowed(); in Checked()
32 void Overflowed() {} in Overflowed() function in WTF::Checked
/external/llvm/include/llvm/Support/
DMathExtras.h701 bool &Overflowed = ResultOverflowed ? *ResultOverflowed : Dummy;
704 Overflowed = (Z < X || Z < Y);
705 if (Overflowed)
719 bool &Overflowed = ResultOverflowed ? *ResultOverflowed : Dummy;
726 Overflowed = false;
738 Overflowed = true;
747 Overflowed = true;
767 bool &Overflowed = ResultOverflowed ? *ResultOverflowed : Dummy;
769 T Product = SaturatingMultiply(X, Y, &Overflowed);
770 if (Overflowed)
[all …]
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DMathExtras.h760 bool &Overflowed = ResultOverflowed ? *ResultOverflowed : Dummy;
763 Overflowed = (Z < X || Z < Y);
764 if (Overflowed)
777 bool &Overflowed = ResultOverflowed ? *ResultOverflowed : Dummy;
784 Overflowed = false;
796 Overflowed = true;
805 Overflowed = true;
823 bool &Overflowed = ResultOverflowed ? *ResultOverflowed : Dummy;
825 T Product = SaturatingMultiply(X, Y, &Overflowed);
826 if (Overflowed)
[all …]
/external/llvm/lib/ProfileData/
DInstrProf.cpp348 bool Overflowed; in merge() local
349 I->Count = SaturatingMultiplyAdd(J->Count, Weight, I->Count, &Overflowed); in merge()
350 if (Overflowed) in merge()
362 bool Overflowed; in scale() local
363 I->Count = SaturatingMultiply(I->Count, Weight, &Overflowed); in scale()
364 if (Overflowed) in scale()
397 bool Overflowed; in merge() local
399 SaturatingMultiplyAdd(Other.Counts[I], Weight, Counts[I], &Overflowed); in merge()
400 if (Overflowed) in merge()
418 bool Overflowed; in scale() local
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DMathExtras.h778 bool &Overflowed = ResultOverflowed ? *ResultOverflowed : Dummy;
781 Overflowed = (Z < X || Z < Y);
782 if (Overflowed)
795 bool &Overflowed = ResultOverflowed ? *ResultOverflowed : Dummy;
802 Overflowed = false;
814 Overflowed = true;
823 Overflowed = true;
841 bool &Overflowed = ResultOverflowed ? *ResultOverflowed : Dummy;
843 T Product = SaturatingMultiply(X, Y, &Overflowed);
844 if (Overflowed)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
DInstrProf.cpp494 bool Overflowed; in merge() local
495 I->Count = SaturatingMultiplyAdd(J->Count, Weight, I->Count, &Overflowed); in merge()
496 if (Overflowed) in merge()
508 bool Overflowed; in scale() local
509 I->Count = SaturatingMultiply(I->Count, Weight, &Overflowed); in scale()
510 if (Overflowed) in scale()
546 bool Overflowed; in merge() local
548 SaturatingMultiplyAdd(Other.Counts[I], Weight, Counts[I], &Overflowed); in merge()
549 if (Overflowed) in merge()
567 bool Overflowed; in scale() local
[all …]
/external/icu/icu4c/source/test/intltest/
Dstrtest.cpp405 !sink.Overflowed() in TestCheckedArrayByteSink()
431 !sink.Overflowed()) in TestCheckedArrayByteSink()
445 sink.Overflowed()) in TestCheckedArrayByteSink()
453 !sink.Overflowed()) in TestCheckedArrayByteSink()
/external/icu/icu4c/source/common/unicode/
Dbytestream.h205 UBool Overflowed() const { return overflowed_; } in Overflowed() function
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DPGOMemOPSizeOpt.cpp227 bool Overflowed; in getScaledCount() local
228 uint64_t ScaleCount = SaturatingMultiply(Count, Num, &Overflowed); in getScaledCount()
/external/icu/icu4c/source/i18n/
Dcollationkeys.h67 UBool Overflowed() const { return appended_ > capacity_; } in Overflowed() function
Dcollationkeys.cpp342 if(!preflight && sink.Overflowed()) { in writeSortKeyUpToQuaternary()
Drulebasedcollator.cpp1402 if(!sink.Overflowed()) { in needToWrite()
/external/protobuf/src/google/protobuf/stubs/
Dbytestream.h200 bool Overflowed() const { return overflowed_; } in Overflowed() function
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DCollationKeys.java108 public boolean Overflowed() { in Overflowed() method in CollationKeys.SortKeyByteSink
447 if (!preflight && sink.Overflowed()) { in writeSortKeyUpToQuaternary()
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
DCollationKeys.java115 public boolean Overflowed() { in Overflowed() method in CollationKeys.SortKeyByteSink
457 if (!preflight && sink.Overflowed()) { in writeSortKeyUpToQuaternary()
/external/u-boot/arch/nds32/cpu/n1213/
Dstart.S469 mfsr $r28, EIT_OVL_INTR_PC ! $ir11 Overflowed INTR_PC
/external/icu/icu4c/source/common/
Ducasemap.cpp838 if (sink.Overflowed()) { in ucasemap_mapUTF8()
/external/icu/icu4j/
Dcoverage-exclusion.txt76 com/ibm/icu/impl/coll/CollationKeys$SortKeyByteSink#Overflowed:()Z