Searched refs:ilhs (Results 1 – 6 of 6) sorted by relevance
/external/googletest/googlemock/src/ |
D | gmock-matchers.cc | 145 for (size_t ilhs = 0; ilhs < graph_->LhsSize(); ++ilhs) { in Compute() local 148 GTEST_CHECK_(left_[ilhs] == kUnused) in Compute() 149 << "ilhs: " << ilhs << ", left_[ilhs]: " << left_[ilhs]; in Compute() 152 TryAugment(ilhs, &seen); in Compute() 155 for (size_t ilhs = 0; ilhs < left_.size(); ++ilhs) { in Compute() local 156 size_t irhs = left_[ilhs]; in Compute() 158 result.push_back(ElementMatcherPair(ilhs, irhs)); in Compute() 182 bool TryAugment(size_t ilhs, ::std::vector<char>* seen) { in TryAugment() argument 185 if (!graph_->HasEdge(ilhs, irhs)) continue; in TryAugment() 200 left_[ilhs] = irhs; in TryAugment() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/src/ |
D | gmock-matchers.cc | 222 for (size_t ilhs = 0; ilhs < graph_->LhsSize(); ++ilhs) { in Compute() local 225 GTEST_CHECK_(left_[ilhs] == kUnused) in Compute() 226 << "ilhs: " << ilhs << ", left_[ilhs]: " << left_[ilhs]; in Compute() 229 TryAugment(ilhs, &seen); in Compute() 232 for (size_t ilhs = 0; ilhs < left_.size(); ++ilhs) { in Compute() local 233 size_t irhs = left_[ilhs]; in Compute() 235 result.push_back(ElementMatcherPair(ilhs, irhs)); in Compute() 259 bool TryAugment(size_t ilhs, ::std::vector<char>* seen) { in TryAugment() argument 263 if (!graph_->HasEdge(ilhs, irhs)) in TryAugment() 279 left_[ilhs] = irhs; in TryAugment() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/unittest/googlemock/include/gmock/ |
D | gmock-matchers.h | 3273 bool HasEdge(size_t ilhs, size_t irhs) const { 3274 return matched_[SpaceIndex(ilhs, irhs)] == 1; 3276 void SetEdge(size_t ilhs, size_t irhs, bool b) { 3277 matched_[SpaceIndex(ilhs, irhs)] = b ? 1 : 0; 3290 size_t SpaceIndex(size_t ilhs, size_t irhs) const { 3291 return ilhs * num_matchers_ + irhs; 3434 for (size_t ilhs = 0; ilhs != num_elements; ++ilhs) { 3436 matrix.SetEdge(ilhs, irhs, *did_match_iter++ != 0);
|
/external/googletest/googlemock/include/gmock/ |
D | gmock-matchers.h | 2849 bool HasEdge(size_t ilhs, size_t irhs) const { 2850 return matched_[SpaceIndex(ilhs, irhs)] == 1; 2852 void SetEdge(size_t ilhs, size_t irhs, bool b) { 2853 matched_[SpaceIndex(ilhs, irhs)] = b ? 1 : 0; 2866 size_t SpaceIndex(size_t ilhs, size_t irhs) const { 2867 return ilhs * num_matchers_ + irhs; 3021 for (size_t ilhs = 0; ilhs != num_elements; ++ilhs) { 3023 matrix.SetEdge(ilhs, irhs, *did_match_iter++ != 0);
|
/external/googletest/googlemock/test/ |
D | gmock-matchers_test.cc | 6038 for (size_t ilhs = 0; ilhs < graph_->LhsSize(); ++ilhs) { in RecurseInto() local 6039 if (lhs_used_[ilhs] != kUnused) { in RecurseInto() 6042 if (!graph_->HasEdge(ilhs, irhs)) { in RecurseInto() 6045 PushMatch(ilhs, irhs); in RecurseInto() 6098 size_t ilhs = matches[i].first; in TEST_P() local 6100 EXPECT_TRUE(graph.HasEdge(ilhs, irhs)); in TEST_P() 6101 EXPECT_FALSE(seen_element[ilhs]); in TEST_P() 6103 seen_element[ilhs] = true; in TEST_P()
|
/external/icu/icu4c/source/i18n/ |
D | decNumber.cpp | 4917 Int ilhs, irhs, iacc; /* item counts in the arrays */ in decMultiplyOp() local 4988 ilhs=(lhs->digits+FASTDIGS-1)/FASTDIGS; /* [ceiling] */ in decMultiplyOp() 4990 iacc=ilhs+irhs; in decMultiplyOp() 4993 needbytes=ilhs*sizeof(uInt); in decMultiplyOp()
|