Lines Matching refs:ByteArrayValue
17 public byte[] ByteArrayValue { get; private set; } property
34 if(ByteArrayValue != null) in GetBytes()
36 return ByteArrayValue; in GetBytes()
63 return new RegisterValue { RawValue = (ulong)v, ByteArrayValue = null, Bits = 64 }; in operator RegisterValue()
68 return new RegisterValue { RawValue = v, ByteArrayValue = null, Bits = 64 }; in operator RegisterValue()
73 return new RegisterValue { RawValue = v, ByteArrayValue = null, Bits = 32 }; in operator RegisterValue()
78 return new RegisterValue { RawValue = v, ByteArrayValue = null, Bits = 16 }; in operator RegisterValue()
83 return new RegisterValue { RawValue = v, ByteArrayValue = null, Bits = 8 }; in operator RegisterValue()
88 …return new RegisterValue { RawValue = default(ulong), ByteArrayValue = v, Bits = (uint)v.Length * … in operator RegisterValue()
93 if(v.ByteArrayValue != null) in operator ulong()
107 if(v.ByteArrayValue != null) in operator uint()
126 if(v.ByteArrayValue != null) in operator ushort()
145 if(v.ByteArrayValue != null) in operator byte()
164 return new RegisterValue { RawValue = rawValue, ByteArrayValue = null, Bits = bits }; in Create()
169 if(ByteArrayValue == null || ByteArrayValue.Skip(size).Any(b => b != 0)) in TryGetBytesForInt()
175 bytes = ByteArrayValue.Take(size).ToArray(); in TryGetBytesForInt()