| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/ |
| D | DeprecatedSDCard.cs | 45 cardIdentification[0] = BitConverter.ToUInt32(cardIdentificationBytes, 0); in DeprecatedSDCard() 46 cardIdentification[1] = BitConverter.ToUInt32(cardIdentificationBytes, 4); in DeprecatedSDCard() 47 cardIdentification[2] = BitConverter.ToUInt32(cardIdentificationBytes, 8); in DeprecatedSDCard() 48 cardIdentification[3] = BitConverter.ToUInt32(cardIdentificationBytes, 12); in DeprecatedSDCard()
|
| D | SunxiMMC.cs | 325 Status = BitConverter.ToUInt32(descriptorData, 0); in SunxiDMADescriptor() 326 BufferSize = BitConverter.ToUInt32(descriptorData, 4); in SunxiDMADescriptor() 327 BufferAddress = BitConverter.ToUInt32(descriptorData, 8); in SunxiDMADescriptor() 328 NextDescriptor = BitConverter.ToUInt32(descriptorData, 12); in SunxiDMADescriptor()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/ |
| D | UT32_CAN.cs | 355 var matches = ~(BitConverter.ToUInt32(input, 0) ^ BitConverter.ToUInt32(code, 0)); in FilterFrame() 356 var ignores = BitConverter.ToUInt32(mask, 0); in FilterFrame() 373 … var matches = ~(BitConverter.ToUInt32(input, 0) ^ BitConverter.ToUInt32(code, 0)); in FilterFrame() 374 var ignores = BitConverter.ToUInt32(mask, 0); in FilterFrame() 392 … var matches = ~(BitConverter.ToUInt32(input, 0) ^ BitConverter.ToUInt32(code, 0)); in FilterFrame() 393 var ignores = BitConverter.ToUInt32(mask, 0); in FilterFrame()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/DMA/ |
| D | UDMA.cs | 248 ControlWord = BitConverter.ToUInt32(data, 8); in ControlStructure() 250 SourceEndPointer = BitConverter.ToUInt32(data, 0); in ControlStructure() 251 DestinationEndPointer = BitConverter.ToUInt32(data, 4); in ControlStructure() 252 Unused = BitConverter.ToUInt32(data, 0xC); in ControlStructure()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/ |
| D | SVDParserTests.cs | 338 var expectedValue = BitConverter.ToUInt32(newBytes, 0); in ShouldReadValueFromRegisterInBigEndian() 461 var expectedValue = BitConverter.ToUInt32(expectedBytes, 0); in ShouldReadFromUnalignedOffsetInOnePeripheral() 539 var expectedValue = BitConverter.ToUInt32(expectedBytes, 0); in ShouldReadFromUnalignedOffsetInManyPeripherals() 622 var expectedValue = BitConverter.ToUInt32(expectedBytes, 0); in ShouldReadFromUnalignedOffsetInOnePeripheralInBigEndian() 711 var expectedValue = BitConverter.ToUInt32(expectedBytes, 0); in ShouldReadFromUnalignedOffsetInOnePeripheralWithWriteOnlyRegister()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/USB/MSC/ |
| D | BulkOnlyTransportCommandBlockWrapper.cs | 19 || BitConverter.ToUInt32(bytes, 0) != SignatureValue) in TryParse()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | EnumConverter.cs | 17 public static readonly Func<TEnum, uint> ToUInt32 = GenerateUInt32Converter(); field in Antmicro.Renode.Utilities.TEnum
|
| D | ByteArrayWithAccessTracking.cs | 71 … var value = BitHelper.ToUInt32(array, (int)(part * accessByteWidth), (int)accessByteWidth, true); in GetPartAsDoubleWord()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/ |
| D | SMSC9500.cs | 668 hardwareConfigurationRegister = BitConverter.ToUInt32(packet.data, 0); in ProcessVendorSet() 672 … powerMenagementConfigurationRegister = BitConverter.ToUInt32(packet.data, 0); in ProcessVendorSet() 680 macControlRegister = BitConverter.ToUInt32(packet.data, 0); in ProcessVendorSet() 687 … e2pCommand = BitConverter.ToUInt32(packet.data, 0) & (~(0x80000000 | 0x00000400)); in ProcessVendorSet() 691 miiAddress = BitConverter.ToUInt32(packet.data, 0); in ProcessVendorSet() 695 miiData = BitConverter.ToUInt32(packet.data, 0); in ProcessVendorSet()
|
| D | MassStorage.cs | 501 this.Signature = BitConverter.ToUInt32(data, 0); in Fill() 507 this.Tag = BitConverter.ToUInt32(data, 4); in Fill() 508 this.DataTransferLength = BitConverter.ToUInt32(data, 8); in Fill()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CPU/ |
| D | CPURegister.cs | 57 result = BitConverter.ToUInt32(bytesWithPadding, 0); in ValueFromBytes()
|
| D | RegisterValue.cs | 111 return BitConverter.ToUInt32(bytes, 0); in operator uint()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/NORFlash/ |
| D | DecodedOperation.cs | 50 ExecutionAddress = BitHelper.ToUInt32(AddressBytes, 0, AddressLength, false); in TryAccumulateAddress()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/GDB/ |
| D | PacketBuilder.cs | 50 var checksumValue = (byte)Convert.ToUInt32(Encoding.ASCII.GetString(checksum), 16); in AppendByte()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Cores/Arm/ |
| D | ARMCommon.cs | 110 allLevels = BitHelper.ToUInt32(levels, 0, levels.Length, reverse: true); in UpdateLevels()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SPI/ |
| D | NPCX_Flash.cs | 86 … var address = BitHelper.ToUInt32(addressBuffer.ToArray(), 0, AddressByteCount, true); in Transmit() 105 … temporaryAddress = BitHelper.ToUInt32(addressBuffer.ToArray(), 0, AddressByteCount, true); in Transmit()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Sound/ |
| D | PCMDecoder.cs | 63 var sample = BitHelper.ToUInt32(bytes, 0, bytes.Length, false); in LoadFile()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/Crypto/ |
| D | InternalMemoryAccessor.cs | 29 …var result = BitHelper.ToUInt32(internalMemory, (int)offset, 4, endianness == Endianness.LittleEnd… in ReadDoubleWord()
|
| D | STM32H7_CRYPTO.cs | 391 if(BitHelper.ToUInt32(iv, 12, 4, false) != 0x2) in InitializeHeaderPhase() 511 yield return BitHelper.ToUInt32(bytes, i, 4, false); in BytesToUIntAndSwapEndianness()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/ |
| D | SimpleCache.cs | 113 uint number = BitConverter.ToUInt32(BitConverter.GetBytes(value), 0); in ShiftAndWrap()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/Memory/ |
| D | ArrayMemory.cs | 68 var result = BitConverter.ToUInt32(array, intOffset); in ReadDoubleWord()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Memory/ |
| D | GenericI2cEeprom.cs | 49 var addressValue = BitHelper.ToUInt32(data, 0, bytesWritten, reverse: false); in Write()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/DMA/ |
| D | DmaEngine.cs | 167 …sysbus.WriteDoubleWord(destinationAddress + offset, BitConverter.ToUInt32(buffer, transferred), co… in IssueCopy()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CPU/ExecutionTracer/ |
| D | TraceBasedModelFlatBufferWriter.cs | 190 Instruction.AddOpcode(builder, BitHelper.ToUInt32(opcode, 0, opcode.Length, false)); in BuildInstructionFlatbuffer()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | CC2538_Cryptoprocessor.cs | 119 … valueProviderCallback: _ => BitConverter.ToUInt32(inputVector, j * 4)); in CC2538_Cryptoprocessor() 124 … valueProviderCallback: _ => BitConverter.ToUInt32(tag, j * 4)); in CC2538_Cryptoprocessor()
|