HomeSort by relevance Sort by last modified time
    Searched refs:bucket_iterator (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/ADT/
FoldingSet.h 430 typedef FoldingSetBucketIterator<T> bucket_iterator; typedef in class:llvm::FoldingSet
432 bucket_iterator bucket_begin(unsigned hash) {
433 return bucket_iterator(Buckets + (hash & (NumBuckets-1)));
436 bucket_iterator bucket_end(unsigned hash) {
437 return bucket_iterator(Buckets + (hash & (NumBuckets-1)), true);
509 typedef FoldingSetBucketIterator<T> bucket_iterator; typedef in class:llvm::ContextualFoldingSet
511 bucket_iterator bucket_begin(unsigned hash) {
512 return bucket_iterator(Buckets + (hash & (NumBuckets-1)));
515 bucket_iterator bucket_end(unsigned hash) {
516 return bucket_iterator(Buckets + (hash & (NumBuckets-1)), true)
    [all...]
  /frameworks/compile/mclinker/unittests/
HashTableTest.cpp 249 TEST_F( HashTableTest, bucket_iterator ) {

Completed in 229 milliseconds