Lines Matching refs:CacheEntry
42 struct CacheEntry struct in LRU_Cache
46 CacheEntry * pPred; argument
47 CacheEntry * pSucc; argument
49 typedef ::std::hash_map< t_Key, CacheEntry *, t_KeyHash, t_KeyEqual > t_Key2Element;
55 CacheEntry * _pBlock;
56 mutable CacheEntry * _pHead;
57 mutable CacheEntry * _pTail;
58 inline void toFront( CacheEntry * pEntry ) const;
107 _pBlock = new CacheEntry[_nCachedElements]; in LRU_Cache()
126 CacheEntry * pEntry ) const in toFront()
164 CacheEntry * pEntry = (*iFind).second; in getValue()
185 CacheEntry * pEntry; in setValue()