Home
last modified time | relevance | path

Searched refs:GetValue (Results 1 – 4 of 4) sorted by relevance

/Renode-v1.15.3-c57714d/src/Renode/Network/ExternalControl/
DADC.cs46 case ADCCommand.GetValue: in Invoke()
72 case ADCCommand.GetValue: in GetExpectedPayloadCount()
97 GetValue, enumerator
/Renode-v1.15.3-c57714d/src/Plugins/CoSimulationPlugin/CoSimulated/Peripherals/
DCoSimulatedCFU.cs233 int rD = (int)BitHelper.GetValue(opcode, 7, 5); in HandleCustomInstruction()
234 int rs1 = (int)BitHelper.GetValue(opcode, 15, 5); in HandleCustomInstruction()
236 int rs2 = (int)BitHelper.GetValue(opcode, 20, 5); in HandleCustomInstruction()
238 UInt32 funct3 = Convert.ToUInt32(BitHelper.GetValue(opcode, 12, 3)); in HandleCustomInstruction()
239 UInt32 funct7 = Convert.ToUInt32(BitHelper.GetValue(opcode, 25, 7)); in HandleCustomInstruction()
/Renode-v1.15.3-c57714d/tools/PeakRDL-renode/tests/
DSystemRDLGenTest.cs251 … var regInst = pType.GetField(register.InstanceName, getPrivateFlags).GetValue(peripheral); in TestDynamicMeta()
260 var fieldInst = fieldField.GetValue(regInst); in TestDynamicMeta()
262 var fieldMode = this.RegisterField.GetField("fieldMode").GetValue(fieldInst); in TestDynamicMeta()
263 var position = this.RegisterField.GetField("position").GetValue(fieldInst); in TestDynamicMeta()
264 var width = this.RegisterField.GetField("width").GetValue(fieldInst); in TestDynamicMeta()
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/
DCreationDriver.cs795 …O)GetGpioProperties(objectType).Single(x => x.Name == irqEnd.PropertyName).GetValue(objectToSetOn); in SetPropertiesAndConnectInterrupts()