Home
last modified time | relevance | path

Searched refs:AsByte (Results 1 – 2 of 2) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DBitStream.cs102 public byte AsByte(uint offset = 0, int length = 8) in AsByte() method in Antmicro.Renode.Utilities.BitStream
152 result[i] = AsByte(offset + 8 * i); in AsByteArray()
164 return (AsByte(offset, length) in AsUInt32()
165 | (uint)AsByte(offset + 8, length - 8) << 8 in AsUInt32()
166 | (uint)AsByte(offset + 16, length - 16) << 16 in AsUInt32()
167 | (uint)AsByte(offset + 24, length - 24) << 24); in AsUInt32()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/SD/
DSDCard.cs242 return GenerateR1Response(illegalCommand: true).AsByte(); in Transmit()