OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bucket_iterator
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/ADT/
FoldingSet.h
453
typedef FoldingSetBucketIterator<T>
bucket_iterator
;
typedef in class:llvm::final
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
;
typedef in class:llvm::final
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)
[
all
...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
FoldingSet.h
416
typedef FoldingSetBucketIterator<T>
bucket_iterator
;
typedef in class:llvm::FoldingSet
418
bucket_iterator
bucket_begin(unsigned hash) {
419
return
bucket_iterator
(Buckets + (hash & (NumBuckets-1)));
422
bucket_iterator
bucket_end(unsigned hash) {
423
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
...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
FoldingSet.h
461
typedef FoldingSetBucketIterator<T>
bucket_iterator
;
typedef in class:llvm::final
463
bucket_iterator
bucket_begin(unsigned hash) {
464
return
bucket_iterator
(Buckets + (hash & (NumBuckets-1)));
467
bucket_iterator
bucket_end(unsigned hash) {
468
return
bucket_iterator
(Buckets + (hash & (NumBuckets-1)), true);
541
typedef FoldingSetBucketIterator<T>
bucket_iterator
;
typedef in class:llvm::final
543
bucket_iterator
bucket_begin(unsigned hash) {
544
return
bucket_iterator
(Buckets + (hash & (NumBuckets-1)));
547
bucket_iterator
bucket_end(unsigned hash) {
548
return
bucket_iterator
(Buckets + (hash & (NumBuckets-1)), true)
[
all
...]
Completed in 387 milliseconds