Searched refs:crcEngine (Results 1 – 5 of 5) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/GDB/Commands/ |
| D | CalculateCRCCommand.cs | 21 crcEngine = new CRCEngine(CRCPolynomial.CRC32, false, false, 0xffffffff, 0); in CalculateCRCCommand() 60 private readonly CRCEngine crcEngine; field in Antmicro.Renode.Utilities.GDB.Commands.CalculateCRCCommand
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | MAX32650_TPU.cs | 36 crcEngine.Update(data); in CalculateCrc32() 37 crcValue.Value = crcEngine.Value; in CalculateCrc32() 54 crcEngine = new CRCEngine(polynomial, 32, init: (uint)crcValue.Value); in UpdateCRCEngine() 175 private CRCEngine crcEngine; field in Antmicro.Renode.Peripherals.Miscellaneous.MAX32650_TPU
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Wireless/IEEE802_15_4/ |
| D | Frame.cs | 48 CRCEngine crcEngine = new CRCEngine(polynomial, init: crcInitialValue); in CalculateCRC() 53 crc = crcEngine.Calculate(bytes); in CalculateCRC() 56 crc = crcEngine.Calculate(bytes); in CalculateCRC()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Sensors/ |
| D | ICP_101xx.cs | 24 crcEngine = new CRCEngine(0x31, 8, false, false, 0xFF, 0x00); in ICP_101xx() 427 yield return (byte)crcEngine.Calculate(word); in InsertCrc() 460 private readonly CRCEngine crcEngine; field in Antmicro.Renode.Peripherals.Sensors.ICP_101xx
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/ |
| D | SDCard.cs | 155 crcEngine = new CRCEngine(0x1021, 16, false, false, 0x00); in SDCard() 443 crc = (ushort)crcEngine.Calculate(readData); in HandleRead() 561 ushort crc = (ushort)crcEngine.Calculate(reg); in GenerateRegisterResponse() 834 private readonly CRCEngine crcEngine; field in Antmicro.Renode.Peripherals.SD.SDCard
|