Lines Matching refs:CacheMap
42 class CacheMap : public Map<Key_t, Value_t>
46 CacheMap ();
47 ~CacheMap ();
80 const int CacheMap<Key_t, Value_t>::INIT_SIZE = 1 << 14;
82 const int CacheMap<Key_t, Value_t>::MAX_SIZE = 1 << 20;
84 template <typename Key_t, typename Value_t>CacheMap<Key_t, Value_t>
85 ::CacheMap () in CacheMap() function
95 CacheMap<Key_t, Value_t>::~CacheMap () in ~CacheMap()
104 CacheMap<Key_t, Value_t>::hash (Key_t key) in hash()
113 CacheMap<Key_t, Value_t>::put (Key_t key, Value_t val) in put()
141 typename CacheMap<Key_t, Value_t>::Entry *
142 CacheMap<Key_t, Value_t>::getEntry (Key_t key) in getEntry()
157 CacheMap<Key_t, Value_t>::get (Key_t key) in get()
165 CacheMap<Key_t, Value_t>::get (Key_t key, typename Map<Key_t, Value_t>::Relation rel) in get()
174 CacheMap<Key_t, Value_t>::remove (Key_t key) in remove()