Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DCRCEngine.cs17 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/
DEFR32xG2_GPCRC.cs107 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/
DSTM32_CRC.cs199 var config = new CRCConfig( in ReloadCRCConfig()
DSAM4S_CRCCU.cs135 var config = new CRCConfig( in ReloadCRCConfig()