1 write to _start
System.Reflection.Metadata (1)
System\Reflection\Metadata\BlobWriter.cs (1)
46
_start
= start;
10 references to _start
System.Reflection.Metadata (10)
System\Reflection\Metadata\BlobWriter.cs (10)
58
return Length == other.Length && _buffer.AsSpan(
_start
, Length).SequenceEqual(other._buffer.AsSpan(other.
_start
, other.Length));
65
return _position -
_start
;
69
if (value < 0 ||
_start
> _end - value)
74
_position =
_start
+ value;
78
public int Length => _end -
_start
;
80
public Blob Blob => new Blob(_buffer,
_start
, Length);
92
return _buffer.AsSpan(
_start
+ start, byteCount).ToArray();
105
return ImmutableArray.Create(_buffer.AsSpan(
_start
+ start, byteCount));
533
_position =
_start
;