Searched refs:cpuLocalValues (Results 1 – 1 of 1) sorted by relevance
2105 if(cpuLocalValues.ContainsKey(key)) in AddContextKey()2109 cpuLocalValues[key] = new Dictionary<StateMask, TValue>(); in AddContextKey()2110 cpuAllAccess[key] = cpuLocalValues[key][StateMask.AllAccess] = defaultFactory(); in AddContextKey()2119 cpuLocalValues.Remove(key); in RemoveContextKey()2137 var collection = context == null ? globalValue : cpuLocalValues[context]; in WithStateCollection()2149 … return cpuLocalValues.Values.SelectMany(v => v.Values).Concat(globalValue.Values).Distinct(); in GetAllDistinctValues()2154 return cpuLocalValues.Keys; in GetAllContextKeys()2159 return (context == null ? globalValue : cpuLocalValues[context]).Keys; in GetAllStateKeys()2197 if(key != null && cpuLocalValues.TryGetValue(key, out var thisCpuValues)) in TryGetValueForState()2227 …private readonly Dictionary<IPeripheral, Dictionary<StateMask, TValue>> cpuLocalValues = new Dicti… field in Antmicro.Renode.Peripherals.Bus.SystemBus.TValue