Lines Matching refs:width
84 public bool TryReadAccess(ulong offset, out ulong value, SysbusAccessWidth width) in TryReadAccess() argument
86 var bytesToRead = CheckAndGetWidth(width); in TryReadAccess()
96 … LogReadSuccess(value, tmpRegister.Peripheral.Name, tmpRegister.Name, offset, width); in TryReadAccess()
100 LogReadFail(tmpRegister.Peripheral.Name, tmpRegister.Name, offset, width); in TryReadAccess()
105 value = AssembleValueFromRegisters(offset, width, ref weHaveIt); in TryReadAccess()
110 public bool TryWriteAccess(ulong offset, ulong value, SysbusAccessWidth width) in TryWriteAccess() argument
112 int bytesToWrite = CheckAndGetWidth(width); in TryWriteAccess()
119 …riteSuccess(value, tmpRegister.Peripheral.Name, tmpRegister.Name, offset, width, tmpRegister.HasWr… in TryWriteAccess()
123 … LogWriteFail(value, tmpRegister.Peripheral.Name, tmpRegister.Name, offset, width); in TryWriteAccess()
128 LogWriteRequests(value, offset, width, ref weHaveIt); in TryWriteAccess()
138 …private void LogWriteRequests(ulong value, ulong offset, SysbusAccessWidth width, ref bool weHaveI… in LogWriteRequests() argument
140 var sizeInBytes = (int)width; in LogWriteRequests()
152 …riteSuccess(tmpValue, register.Peripheral.Name, register.Name, tmpOffset, width, register.Access =… in LogWriteRequests()
156 … LogWriteFail(tmpValue, register.Peripheral.Name, register.Name, tmpOffset, width, offset, value); in LogWriteRequests()
163 … private ulong AssembleValueFromRegisters(ulong offset, SysbusAccessWidth width, ref bool weHaveIt) in AssembleValueFromRegisters() argument
165 var sizeInBytes = (int)width; in AssembleValueFromRegisters()
178 … LogReadSuccess(tmpValue, register.Peripheral.Name, register.Name, tmpOffset, width, offset); in AssembleValueFromRegisters()
183 … LogReadFail(register.Peripheral.Name, register.Name, tmpOffset, width, offset); in AssembleValueFromRegisters()
219 …alue, string peripheralName, string name, ulong offset, SysbusAccessWidth width, ulong? originalOf… in LogReadSuccess() argument
237 width in LogReadSuccess()
241 …alue, string peripheralName, string name, ulong offset, SysbusAccessWidth width, bool writeOnce = … in LogWriteSuccess() argument
265 width in LogWriteSuccess()
269 …dFail(string peripheralName, string name, ulong offset, SysbusAccessWidth width, ulong? originalOf… in LogReadFail() argument
286 width in LogReadFail()
290 …alue, string peripheralName, string name, ulong offset, SysbusAccessWidth width, ulong? originalOf… in LogWriteFail() argument
308 width in LogWriteFail()