Home | History | Annotate | Download | only in ADT

Lines Matching defs:bucket_iterator

453   typedef FoldingSetBucketIterator<T> bucket_iterator;
455 bucket_iterator bucket_begin(unsigned hash) {
456 return bucket_iterator(Buckets + (hash & (NumBuckets-1)));
459 bucket_iterator bucket_end(unsigned hash) {
460 return bucket_iterator(Buckets + (hash & (NumBuckets-1)), true);
531 typedef FoldingSetBucketIterator<T> bucket_iterator;
533 bucket_iterator bucket_begin(unsigned hash) {
534 return bucket_iterator(Buckets + (hash & (NumBuckets-1)));
537 bucket_iterator bucket_end(unsigned hash) {
538 return bucket_iterator(Buckets + (hash & (NumBuckets-1)), true);