Searched refs:find_first_in (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/llvm/unittests/ADT/ |
D | BitVectorTest.cpp | 361 EXPECT_EQ(-1, Vec.find_first_in(0, 0)); in TEST() 362 EXPECT_EQ(-1, Vec.find_first_in(24, 24)); in TEST() 363 EXPECT_EQ(-1, Vec.find_first_in(7, 24)); in TEST() 365 EXPECT_EQ(3, Vec.find_first_in(0, 10)); in TEST() 366 EXPECT_EQ(4, Vec.find_first_in(4, 10)); in TEST() 367 EXPECT_EQ(150, Vec.find_first_in(100, 200)); in TEST() 368 EXPECT_EQ(152, Vec.find_first_in(151, 200)); in TEST() 369 EXPECT_EQ(154, Vec.find_first_in(153, 200)); in TEST() 371 EXPECT_EQ(-1, Vec.find_first_in(155, 200)); in TEST() 373 EXPECT_EQ(199, Vec.find_first_in(199, 200)); in TEST() [all …]
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | BitVector.h | 209 int find_first_in(unsigned Begin, unsigned End, bool Set = true) const { 276 return find_first_in(Begin, End, /* Set = */ false); in find_first_unset_in() 314 int find_first() const { return find_first_in(0, Size); } in find_first() 322 int find_next(unsigned Prev) const { return find_first_in(Prev + 1, Size); } in find_next()
|
/external/llvm-project/llvm/tools/llvm-exegesis/lib/ |
D | MCInstrDescView.cpp | 217 const int BIndex = B.find_first_in(AIndex, Size); in anyCommonExcludingForbidden() 222 AIndex = A.find_first_in(BIndex + 1, Size); in anyCommonExcludingForbidden()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | BitVector.h | 207 int find_first_in(unsigned Begin, unsigned End) const { in find_first_in() function 331 int find_first() const { return find_first_in(0, Size); } in find_first() 339 int find_next(unsigned Prev) const { return find_first_in(Prev + 1, Size); } in find_next()
|