HomeSort by: relevance | last modified time | path
    Searched defs:find_first_in (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
BitVector.h 184 /// find_first_in - Returns the index of the first set / unset bit,
187 int find_first_in(unsigned Begin, unsigned End, bool Set = true) const { function in namespace:llvm
254 return find_first_in(Begin, End, /* Set = */ false);
292 int find_first() const { return find_first_in(0, Size); }
300 int find_next(unsigned Prev) const { return find_first_in(Prev + 1, Size); }
BitVector.h 184 /// find_first_in - Returns the index of the first set / unset bit,
187 int find_first_in(unsigned Begin, unsigned End, bool Set = true) const { function in namespace:llvm
254 return find_first_in(Begin, End, /* Set = */ false);
292 int find_first() const { return find_first_in(0, Size); }
300 int find_next(unsigned Prev) const { return find_first_in(Prev + 1, Size); }

Completed in 43 milliseconds