Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/USBDeprecated/
DUSBDescriptor.cs84 arr[0x3] = USB.HiByte(); in ToArray()
90 arr[0x9] = VendorId.HiByte(); in ToArray()
92 arr[0xB] = ProductId.HiByte(); in ToArray()
94 arr[0xD] = Device.HiByte(); in ToArray()
128 arr[0x3] = USB.HiByte(); in ToArray()
195 arr[0x3] = TotalLength.HiByte(); in ToArray()
310 arr[0x5] = MaxPacketSize.HiByte(); in ToArray()
380 arr[i] = id.HiByte(); in ToArray()
DUSBCommunicationClass.cs190 arr[0x4] = bcdCDC.HiByte(); in ToArray()
DUsbHub.cs651 arr[0x4] = HubCharacteristics.HiByte(); in ToArray()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Input/
DFT5336.cs148 …yte)(((int)touchedPoints[pointNumber].Type << 6) | (touchedPoints[pointNumber].X.HiByte() & 0xF))); in PrepareTouchData()
154 …ueue((byte)((touchedPoints[pointNumber].Id << 4) | (touchedPoints[pointNumber].Y.HiByte() & 0xF))); in PrepareTouchData()
DFT5x06.cs184 … data [i * 4 + 5] = (byte)(((int)points [i].Type << 6) | ((points [i].X.HiByte () & 0xF))); in PrepareTouchData()
186 … data [i * 4 + 7] = (byte)(((int)points [i].Id << 4) | ((points [i].Y.HiByte () & 0xF))); in PrepareTouchData()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Network/
DSMC91X.cs240 SetData(offset + 1, value.HiByte()); in WriteBank2()
252 if(interruptMask != value.HiByte()) in WriteBank2()
254 interruptMask = value.HiByte(); in WriteBank2()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/
DSDCard.cs447 spiContext.DataBuffer[blockSize + 1] = crc.HiByte(); in HandleRead()
565 .Append(crc.HiByte()) in GenerateRegisterResponse()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs590 public static byte HiByte(this UInt16 value) in HiByte() method in Antmicro.Renode.Utilities.Misc