Searched refs:CRCConfig (Results 1 – 4 of 4) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | CRCEngine.cs | 17 public CRCEngine(CRCConfig crcConfig) in CRCEngine() 25 … : this(new CRCConfig(polynomial, crcWidth, reflectInput, reflectOutput, init, xorOutput)) in CRCEngine() 31 : this(new CRCConfig(polynomial, reflectInput, reflectOutput, init, xorOutput)) in CRCEngine() 61 public CRCConfig Config => crcConfig; 66 get => crc >> (CRCConfig.MaxCRCWidth - crcConfig.Width); 69 crc = value << (CRCConfig.MaxCRCWidth - crcConfig.Width); 93 … var shiftedPoly = crcPolynomial.Polynomial << (CRCConfig.MaxCRCWidth - crcPolynomial.Width); in GenerateLookupTable() 146 private readonly CRCConfig crcConfig; 151 public struct CRCConfig struct 153 public CRCConfig(uint polynomial, int width, bool reflectInput, bool reflectOutput, in CRCConfig() method [all …]
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/SiLabs/ |
| D | EFR32xG2_GPCRC.cs | 107 BitHelper.ReverseBits(OUT_CRC << (CRCConfig.MaxCRCWidth - gpcrc.Config.Width)), in EFR32xG2_GPCRC() 180 var config = new CRCConfig(temp, true, true, (uint)initDataField.Value, 0x0); in ReloadCRCConfig()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CRC/ |
| D | STM32_CRC.cs | 199 var config = new CRCConfig( in ReloadCRCConfig()
|
| D | SAM4S_CRCCU.cs | 135 var config = new CRCConfig( in ReloadCRCConfig()
|