1 write to _start
System.Reflection.Metadata (1)
System\Reflection\Metadata\BlobWriter.cs (1)
45
_start
= start;
10 references to _start
System.Reflection.Metadata (10)
System\Reflection\Metadata\BlobWriter.cs (10)
57
return Length == other.Length && _buffer.AsSpan(
_start
, Length).SequenceEqual(other._buffer.AsSpan(other.
_start
, other.Length));
64
return _position -
_start
;
68
if (value < 0 ||
_start
> _end - value)
73
_position =
_start
+ value;
77
public int Length => _end -
_start
;
79
public Blob Blob => new Blob(_buffer,
_start
, Length);
91
return _buffer.AsSpan(
_start
+ start, byteCount).ToArray();
104
return ImmutableArray.Create(_buffer.AsSpan(
_start
+ start, byteCount));
532
_position =
_start
;