Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DCRCEngine.cs87 if(tablesCache.ContainsKey(crcPolynomial) && tablesCache[crcPolynomial] != null) in GenerateLookupTable()
89 return tablesCache[crcPolynomial]; in GenerateLookupTable()
113 if(tablesCache.ContainsKey(crcPolynomial)) in GenerateLookupTable()
115 tablesCache[crcPolynomial] = table; in GenerateLookupTable()
121 …private static readonly Dictionary<CRCPolynomial, uint[]> tablesCache = new Dictionary<CRCPolynomi… field in Antmicro.Renode.Utilities.CRCEngine