Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DBitVector.h214 unsigned LastWord = (End - 1) / BITWORD_SIZE; in find_first_in() local
217 for (unsigned i = FirstWord; i <= LastWord; ++i) { in find_first_in()
225 if (i == LastWord) { in find_first_in()
242 unsigned LastWord = (End - 1) / BITWORD_SIZE; in find_last_in() local
245 for (unsigned i = LastWord + 1; i >= FirstWord + 1; --i) { in find_last_in()
249 if (CurrentWord == LastWord) { in find_last_in()
274 unsigned LastWord = (End - 1) / BITWORD_SIZE; in find_first_unset_in() local
277 for (unsigned i = FirstWord; i <= LastWord; ++i) { in find_first_unset_in()
285 if (i == LastWord) { in find_first_unset_in()
304 unsigned LastWord = (End - 1) / BITWORD_SIZE; in find_last_unset_in() local
[all …]