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 415 typedef FoldingSetBucketIterator<T> bucket_iterator; typedef in class:llvm::FoldingSet
417 bucket_iterator bucket_begin(unsigned hash) {
418 return bucket_iterator(Buckets + (hash & (NumBuckets-1)));
421 bucket_iterator bucket_end(unsigned hash) {
422 return bucket_iterator(Buckets + (hash & (NumBuckets-1)), true);
495 typedef FoldingSetBucketIterator<T> bucket_iterator; typedef in class:llvm::ContextualFoldingSet
497 bucket_iterator bucket_begin(unsigned hash) {
498 return bucket_iterator(Buckets + (hash & (NumBuckets-1)));
501 bucket_iterator bucket_end(unsigned hash) {
502 return bucket_iterator(Buckets + (hash & (NumBuckets-1)), true)
    [all...]
  /frameworks/compile/mclinker/unittests/
HashTableTest.cpp 250 TEST_F( HashTableTest, bucket_iterator ) {

Completed in 154 milliseconds