Home
last modified time | relevance | path

Searched refs:CacheItem (Results 1 – 1 of 1) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DLRUCache.cs19 values = new Dictionary<TKey, CacheItem>(); in LRUCache()
47 values[key] = new CacheItem { Position = node, Value = value }; in Add()
72 private readonly Dictionary<TKey, CacheItem> values;
75 private struct CacheItem struct in Antmicro.Renode.Utilities.LRUCache