/external/llvm/include/llvm/ProfileData/ |
D | SampleProf.h | 125 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/ |
D | SampleProf.h | 156 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/ |
D | function-templates-expected.cc | 25 this->Overflowed(); in Checked() 27 this->Overflowed(); in Checked() 32 void Overflowed() {} in Overflowed() function in WTF::Checked
|
/external/llvm/include/llvm/Support/ |
D | MathExtras.h | 701 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/ |
D | MathExtras.h | 760 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/ |
D | InstrProf.cpp | 348 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/ |
D | MathExtras.h | 778 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/ |
D | InstrProf.cpp | 494 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/ |
D | strtest.cpp | 405 !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/ |
D | bytestream.h | 205 UBool Overflowed() const { return overflowed_; } in Overflowed() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/ |
D | PGOMemOPSizeOpt.cpp | 227 bool Overflowed; in getScaledCount() local 228 uint64_t ScaleCount = SaturatingMultiply(Count, Num, &Overflowed); in getScaledCount()
|
/external/icu/icu4c/source/i18n/ |
D | collationkeys.h | 67 UBool Overflowed() const { return appended_ > capacity_; } in Overflowed() function
|
D | collationkeys.cpp | 342 if(!preflight && sink.Overflowed()) { in writeSortKeyUpToQuaternary()
|
D | rulebasedcollator.cpp | 1402 if(!sink.Overflowed()) { in needToWrite()
|
/external/protobuf/src/google/protobuf/stubs/ |
D | bytestream.h | 200 bool Overflowed() const { return overflowed_; } in Overflowed() function
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | CollationKeys.java | 108 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/ |
D | CollationKeys.java | 115 public boolean Overflowed() { in Overflowed() method in CollationKeys.SortKeyByteSink 457 if (!preflight && sink.Overflowed()) { in writeSortKeyUpToQuaternary()
|
/external/u-boot/arch/nds32/cpu/n1213/ |
D | start.S | 469 mfsr $r28, EIT_OVL_INTR_PC ! $ir11 Overflowed INTR_PC
|
/external/icu/icu4c/source/common/ |
D | ucasemap.cpp | 838 if (sink.Overflowed()) { in ucasemap_mapUTF8()
|
/external/icu/icu4j/ |
D | coverage-exclusion.txt | 76 com/ibm/icu/impl/coll/CollationKeys$SortKeyByteSink#Overflowed:()Z
|