Searched refs:HashTableImpl (Results 1 - 2 of 2) sorted by relevance

/frameworks/compile/mclinker/include/mcld/ADT/
H A DHashBase.h42 /** \class HashTableImpl
43 * \brief HashTableImpl is the base class of HashTable.
45 * HashTableImpl uses open-addressing, linear probing hash table.
53 * efficiently. HashTableImpl provides a template argument to change the
60 * than static linkers. HashTableImpl also provides a template argument to
64 class HashTableImpl { class in namespace:mcld
74 typedef HashTableImpl<HashEntryTy, HashFunctionTy> Self;
77 HashTableImpl();
78 explicit HashTableImpl(unsigned int pInitSize);
79 virtual ~HashTableImpl();
[all...]
H A DHashTable.h34 class HashTable : public HashTableImpl<HashEntryTy, HashFunctionTy> {
36 typedef HashTableImpl<HashEntryTy, HashFunctionTy> BaseTy;

Completed in 518 milliseconds