14 references to Length
ILCompiler.ReadyToRun (2)
IBC\MIbcProfileParser.cs (2)
121
peData = new byte[mibcDataEntry.
Length
];
124
peData = br.ReadBytes(checked((int)mibcDataEntry.
Length
));
ILCompiler.RyuJit (2)
src\runtime\src\coreclr\tools\aot\ILCompiler.ReadyToRun\IBC\MIbcProfileParser.cs (2)
121
peData = new byte[mibcDataEntry.
Length
];
124
peData = br.ReadBytes(checked((int)mibcDataEntry.
Length
));
Microsoft.Build.Tasks.Core (1)
Unzip.cs (1)
329
&& zipArchiveEntry.
Length
== fileInfo.Length;
Microsoft.ML.Core (2)
Data\Repository.cs (2)
544
ExceptionContext.CheckDecode(entry.
Length
< int.MaxValue, "Repository stream too large to read into memory");
545
stream = new MemoryStream((int)entry.
Length
);
Microsoft.ML.Ensemble (2)
EntryPoints\CreateEnsemble.cs (2)
340
dataSerialized[i] = new byte[entries[i].
Length
];
342
s.ReadExactly(dataSerialized[i], 0, (int)entries[i].
Length
);
NuGet.Packaging (1)
PackageArchiveReader.cs (1)
316
using (var sizedStream = new SizedArchiveEntryStream(stream, entry.
Length
))
NuGet.Protocol (1)
Model\LocalPackageSearchMetadata.cs (1)
158
if (entry.
Length
>= FiveMegabytes)
System.IO.Compression.ZipFile (2)
System\IO\Compression\ZipFileExtensions.ZipArchiveEntry.Extract.cs (2)
122
preallocationSize = source.
Length
;
177
if (source.
Length
!= 0)
System.IO.Packaging (1)
System\IO\Packaging\ZipWrappingStream.cs (1)
125
return _zipArchiveEntry.
Length
;