Searched refs:bytesUsed (Results 1 – 3 of 3) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Peripherals/CAN/ |
| D | CANMessageFrame.cs | 93 …TryFromSocketCAN(IList<byte> data, out CANMessageFrame message, out int bytesUsed, bool useNetwork… in TryFromSocketCAN() argument 97 bytesUsed = frame.Size; in TryFromSocketCAN() 102 bytesUsed = 0; in TryFromSocketCAN()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/ |
| D | VideoCapturer.cs | 97 var bytesUsed = Marshal.ReadInt32(buf, 0x8); in GrabSingleFrame() 99 var frame = new byte[bytesUsed]; in GrabSingleFrame() 100 Marshal.Copy(framebuffer, frame, 0, bytesUsed); in GrabSingleFrame()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/Miscellaneous/ |
| D | OpenTitan_KMAC.cs | 188 … private static bool TryLeftDecode(byte[] data, int offset, out byte[] str, out int bytesUsed) in TryLeftDecode() argument 191 bytesUsed = 0; in TryLeftDecode() 211 bytesUsed = 1 + stringLengthSize + stringLength; in TryLeftDecode() 213 if(data.Length < offset + bytesUsed) in TryLeftDecode() 215 bytesUsed = 0; in TryLeftDecode() 695 …if(!TryLeftDecode(prefix, 0, out functionName, out var bytesUsed) || bytesUsed > NumberOfRegisters… in TryDecodePrefix() 701 return TryLeftDecode(prefix, bytesUsed, out customization, out bytesUsed); in TryDecodePrefix()
|