1 write to Length
System.Reflection.Metadata (1)
System\Reflection\Metadata\Blob.cs (1)
16
Length
= length;
15 references to Length
ILAssembler (1)
VTableExportPEBuilder.cs (1)
209
int blobEnd = currentOffset + blob.
Length
;
ILCompiler.ReadyToRun (2)
Compiler\DependencyAnalysis\ReadyToRun\NibbleWriter.cs (2)
157
Array.Copy(blobSegment.Array, blobSegment.Offset, output, startOffset, blob.
Length
);
158
startOffset += blob.
Length
;
Microsoft.CodeAnalysis (2)
PEWriter\ExtendedPEBuilder.cs (1)
97
mvidWriter.WriteBytes(0, _mvidSectionFixup.
Length
);
PEWriter\MetadataWriter.cs (1)
2779
reservedGuid.CreateWriter().WriteBytes(0, mvidFixup.
Length
);
System.Reflection.Metadata (10)
System\Reflection\Metadata\Blob.cs (1)
21
public ArraySegment<byte> GetBytes() => new ArraySegment<byte>(Buffer, Start,
Length
);
System\Reflection\Metadata\BlobWriter.cs (1)
35
: this(blob.Buffer, blob.Start, blob.
Length
)
System\Reflection\Metadata\Ecma335\Encoding\ControlFlowBuilder.cs (3)
300
int chunkSize = Math.Min(branch.OperandOffset - srcOffset, srcBlob.
Length
- srcBlobOffset);
306
if (srcBlobOffset == srcBlob.
Length
)
317
srcBlobOffset == srcBlob.
Length
||
System\Reflection\PortableExecutable\PEBuilder.cs (5)
429
int blobLength = blob.
Length
;
468
internal static Blob GetSuffixBlob(Blob container, Blob blob) => new Blob(container.Buffer, blob.Start + blob.
Length
, container.Start + container.
Length
- blob.Start - blob.
Length
);
496
if (signature == null || signature.Length > strongNameSignatureFixup.
Length
)