Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Bus/
DSystemBus.cs2180 if(cache.TryGetValue(initiatorState.Value, out var cachedValue)) in TryGetValue()
2182 value = cachedValue; in TryGetValue()
2187 cache[initiatorState.Value] = cachedValue = defaultFactory(); in TryGetValue()
2188 return TryGetValueForState(cachedValue, key, initiatorState, out value); in TryGetValue()
2192 …private bool TryGetValueForState(TValue cachedValue, IPeripheral key, ulong? initiatorState, out T… in TryGetValueForState() argument
2214 cachedValue.Coalesce(pair.Value); in TryGetValueForState()
2217 value = anyHit ? cachedValue : default(TValue); in TryGetValueForState()