Lines Matching refs:offset
56 public ulong ReadQuadWord(long offset) in ReadQuadWord() argument
58 return systemCPeripheral.ReadQuadWord(offset); in ReadQuadWord()
61 public void WriteQuadWord(long offset, ulong value) in WriteQuadWord() argument
63 systemCPeripheral.WriteQuadWord(offset, value); in WriteQuadWord()
66 public uint ReadDoubleWord(long offset) in ReadDoubleWord() argument
68 return systemCPeripheral.ReadDoubleWord(offset); in ReadDoubleWord()
71 public void WriteDoubleWord(long offset, uint value) in WriteDoubleWord() argument
73 systemCPeripheral.WriteDoubleWord(offset, value); in WriteDoubleWord()
76 public ushort ReadWord(long offset) in ReadWord() argument
78 return systemCPeripheral.ReadWord(offset); in ReadWord()
81 public void WriteWord(long offset, ushort value) in WriteWord() argument
83 systemCPeripheral.WriteWord(offset, value); in WriteWord()
86 public byte ReadByte(long offset) in ReadByte() argument
88 return systemCPeripheral.ReadByte(offset); in ReadByte()
91 public void WriteByte(long offset, byte value) in WriteByte() argument
93 systemCPeripheral.WriteByte(offset, value); in WriteByte()
96 public ulong ReadDirect(byte dataLength, long offset, byte connectionIndex) in ReadDirect() argument
98 return systemCPeripheral.ReadDirect(dataLength, offset, connectionIndex); in ReadDirect()
101 public void WriteDirect(byte dataLength, long offset, ulong value, byte connectionIndex) in WriteDirect() argument
103 systemCPeripheral.WriteDirect(dataLength, offset, value, connectionIndex); in WriteDirect()