Home
last modified time | relevance | path

Searched refs:id2 (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/GDB/
DPacketThreadId.cs37 && TryParseId(ids[0], out var id1) && id1 != All && TryParseId(ids[1], out var id2)) in PacketThreadId()
40 ThreadId = id2; in PacketThreadId()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Peripherals/Peripherals/CAN/
DMCAN.cs1218 var id2 = filter.ID2; in StoreInRxBuffer()
1220 var rxBufferIdx = BitHelper.GetValue(id2, 0, 6); in StoreInRxBuffer()
1221 var filterEventPins = BitHelper.GetValue(id2, 6, 3); in StoreInRxBuffer()
1222 var target = (RxBufferOrDebugDestination)BitHelper.GetValue(id2, 9, 2); in StoreInRxBuffer()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DMisc.cs1040 public static void SwapElements<T>(T[] arr, int id1, int id2) in SwapElements() argument
1043 arr[id1] = arr[id2]; in SwapElements()
1044 arr[id2] = tmp; in SwapElements()