14 references to Length
ILCompiler.ReadyToRun (14)
src\runtime\src\coreclr\tools\Common\Compiler\NativeAotNameMangler.cs (4)
107
if (mangledName.
Length
> 30)
147
int neededLength = origName.
Length
+ 1 + CountDigits(iter);
153
buffer[origName.
Length
] = (byte)'_';
157
bool b = iter.TryFormat(new Span<byte>(buffer).Slice(origName.
Length
+ 1), out _);
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (4)
769
if (Name.
Length
<= NameSize)
772
if (Name.
Length
< NameSize)
774
buffer.Slice(Name.
Length
, 8 - Name.
Length
).Clear();
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\SectionWriter.cs (1)
124
int size = value.
Length
+ 1;
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\StringTableBuilder.cs (3)
60
index = (uint)(_stream.Length - text.
Length
- 1);
74
int index = str.
Length
- pos - 1;
75
if ((uint)index < str.
Length
)
src\runtime\src\coreclr\tools\Common\Internal\Text\Utf8String.cs (2)
95
length += s.
Length
;
103
resultSpan = resultSpan.Slice(s.
Length
);