|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
References
include/llvm/Support/BranchProbability.h 173 bool operator!=(BranchProbability RHS) const { return !(*this == RHS); }
lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp10313 if (LeftProb < RightProb || (LeftProb == RightProb && (I & 1)))
10427 if (PeeledCaseProb == BranchProbability::getOne())
unittests/Support/BranchProbabilityTest.cpp 65 EXPECT_FALSE(BP(1, 7) == BP(2, 7));
66 EXPECT_FALSE(BP(1, 7) == BP(1, 4));
67 EXPECT_FALSE(BP(5, 7) == BP(3, 4));
68 EXPECT_TRUE(BP(1, 7) == BP(1, 7));
69 EXPECT_TRUE(BP(1, 7) == BP(2, 14));
70 EXPECT_FALSE(BP(4, 7) == BP(1, 2));
71 EXPECT_FALSE(BP(4, 7) == BP(3, 7));
81 EXPECT_TRUE(BP(1, 7) == BP(2, 14));
82 EXPECT_TRUE(BP(1, 7) == BP(3, 21));
83 EXPECT_TRUE(BP(5, 7) == BP(25, 35));
85 EXPECT_TRUE(BP(4, 8) == BP(400000000, 800000000));
93 EXPECT_TRUE(A == B);
100 EXPECT_FALSE(B == C);
109 EXPECT_FALSE(BigZero == BigOne);
usr/include/c++/7.4.0/bits/stl_algobase.h 800 if (!(*__first1 == *__first2))
utils/unittest/googletest/include/gtest/gtest.h 1392 if (lhs == rhs) {